How to get access to external libraries and header files VC10

13,465

Right click on your project -> Properties -> C/C++ -> General -> Additional Include Directories

Include the path of Xerces include files.

For Lib Properties Linker -> General -> Additional Library Directories

Include the path of Xerces lib files.

In Linker -> General -> Input -> Additional dependencies

Add the libs required for linking.

Share:
13,465
sj755
Author by

sj755

Updated on June 05, 2022

Comments

  • sj755
    sj755 almost 2 years

    I'm going to get a book that uses Xerces C++. I'm currently using VS 2010 ultimate, so the program doesn't miss any features. I've downloaded the precompiled binaries for windows x86 VC10. My question is what do I have to do to my environmental variables and files to be able to have Visual studio import the header files i.e. #include . I have no experience linking external libraries, so I need a simple explanation.