Lets say I have 3 projects:
- Project Program -> compiles into an executable
- References Audio, Tweakbar
- Additional Dependencies: nothing
- Additional Library Dependencies: nothing
- Project Audio
- wrapper around fmod, compiles into .lib
- Additional Dependencies: fmodex_vc.lib
- Additional Library Dependencies: $(SolutionDir)\libs\fmod\lib
- Project TweakBar
- wrapper around AntTweakBar, compiles into .lib
- Additional Dependencies: AntTweakBar.lib
- Additional Library Dependencies: $(SolutionDir)libs\AntTweakBar\lib
Now, the issue is that I am getting the following compile error:
fatal error LNK1104: cannot open file 'AntTweakBar.lib'
This error can be resolved by placing the path to that lib file in the project settings of "Program"
What I want to know is why I need to have the path to this lib there? fmod works perfectly fine without such a path.