🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Adding Lib files to projects

Started by
0 comments, last by GameDev.net 24 years, 6 months ago
A real quick one, how do you add lib files to projects?
Advertisement
You link a .lib using the linker.

How depends on the compiler - I assume VC++ (from your prior post).

Add the .lib to the project by:
- clicking INSERT | FILE then select .lib file.

OR

- click BUILD | SETTINGS -- LINK -- add to object/library modules the name of the .lib file.


Jim


This topic is closed to new replies.

Advertisement