Additional Linkers

Started by
1 comment, last by ekrax 19 years, 7 months ago
In Dev-C++ 4.9.9.0, how can I make it so any filename I type into the Additional Linker section automatically check in the \lib directory? I have to move all the need to library files to my projects for it to work.
Advertisement
If you add something like this to your linker string, it should work:

-L"C:/PATH/TO/YOUR/LIBS"

Then you should be able to include those libs with just a -lLibName

Hope that helps!


Ryan
--Visit the Game Programming Wiki!
not sure exactly how to do with that compiler / linker, but you should be able to specify a directory where your library files are by usually passing -Lxxx to the linker where xxx is the directory where ur files are.

This topic is closed to new replies.

Advertisement