visual studio - Conflict with VS project dependencies and lib files -
i have big vs2008 solution containing >30 vs projects legacy code. 1 of these projects (let's call a) generates header file, needed few other projects (for example b). when go "project dependencies" of vs solution, can check project project b's dependencies - vs includes in project b's linker command line options additional argument project a's lib ("a.lib"). unfortunately, since project not create lib file, project b never find 1 , cannot built.
is there feasible solution problem?
thanks in advance!
cheers, chris
you should set ignore import library
in project a.
this option specifies (import) library generated configuration should not imported dependent projects.
Comments
Post a Comment