Hello,
i am working on real library project. http://tedigame.blogspot.gr/
I use havok, irrlicht,irrklang, Lua, LuaBind libraries and I want to give a release of my code that does not have to include all those libraries. Now you have to reconnect them to your solution.
I know that it is possible for me to hide those *.libs so the end user of my library do not have to connect the to their project but I can not figure out how to do this in MVSC 2010.
Does anybody know?
Problem with Real Libray Project [GENERAL C++ problem]
Re: Problem with Real Libray Project [GENERAL C++ problem]
can't you link them statically? In MSVC you have the option to output a library (.lib) so, any linked library during the complation does actually link statically.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Re: Problem with Real Libray Project [GENERAL C++ problem]
This is what I do. I link them statically. In my solution. And create a big Library that I call Real Library. But when I use it in an other solution I link this big library but MSVC asks for the other libraries.
I do not wish this to happen. It would be best if the user of real library only has to link statically or dynamically with one lib that holds all the other.
This is my problem.
I do not wish this to happen. It would be best if the user of real library only has to link statically or dynamically with one lib that holds all the other.
This is my problem.
Re: Problem with Real Libray Project [GENERAL C++ problem]
You don't link static libraries with other static libraries.
See: http://stackoverflow.com/questions/2157 ... -libraries
See: http://stackoverflow.com/questions/2157 ... -libraries
Last edited by serengeor on Wed Feb 13, 2013 8:59 am, edited 1 time in total.
Working on game: Marrbles (Currently stopped).
Re: Problem with Real Libray Project [GENERAL C++ problem]
dumb me... i didn't know that...
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Re: Problem with Real Libray Project [GENERAL C++ problem]
So what is the way to do this? Link them dynamically? Dll?