Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
There is no setting named "Additional Library Dependencies". If you mean "Directories", no, that doesn't have an effect in linking Program. – Hans Passant Jul 8 '12 at 20:18
1  
@HansPassant Additional Library Dependencies is under Project properties -> Linker – Roger Stewart Jul 8 '12 at 20:21

1 Answer

Because the libraries are only required when the executable is created; at this point, all the libraries are linked into the executable.

Apparently, the VisualStudio IDE doesn't automatically "promote" libraries used by other libraries upwards to the actual application, so you have to do that manually.

share|improve this answer
If this is the case, then why does it work for FMOD? I can play music perfectly fine without giving the "Program" project a path to fmodex_vc.lib – aCuria Jul 8 '12 at 19:47
In fact its not just FMOD, I dont provide a path to many other libraries: SDL, freetype, freeimage, glu32, glew32 ... – aCuria Jul 8 '12 at 19:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.