Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I'm a beginner in c++. I develop a simple project with one sdk. I'm using Microsoft visual c++ 2010.

1. SDK path E:\C++\Library

2.Project path E:\C++\MyProject

Then open my project properties->Config Properties->C/C++->General->Additional Include Directories(../../)

3.Then include headerfile to my project

4.when i build this project

C++
error LNK2019: unresolved external symbol "public: virtual __thiscall 
Posted

there's a property somewhere for 'link' where you put the library path(s) - that's where you put E:\C++\Library - what I usually do though, is create a permanent environment variable eg mylib=E:\C+\Library then reference it by $(mylib) in the project - its easier to cope with version changes if you use that sort of thing
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900