c++ - Unresolved external symbol (LNK2001) -


i have 2 projects: project , project b.

project b references project a.

when compile following errors:

link : warning lnk4044: unrecognized option '/maxilksize:2146435072'; ignored 1>testing.obj : error lnk2001: unresolved external symbol _iid_itestintone 1>testing.obj : error lnk2001: unresolved external symbol _iid_itestinttwo 1>testing.obj : error lnk2001: unresolved external symbol _clsid_wtest 1>    wait pdb close: total time = 0.000s 1>  final: total time = 1.547s ========== rebuild all: 0 succeeded, 1 failed, 0 skipped ========== 

however project b not using securitycenterintegration class @ all, i'm not sure why there problems while linking it.

you missing project a's libs or sources. make sure included dependencies in project settings. go properties > linker > general , check additional library directories correct. add additional libs , objs properties > linker > input > additional dependencies.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -