at the mo i have a visual studio project .
its my 3rd year game engine project ,
i would like to convert it to a more engine like so that the insides can not be tampered with , by converting it to a .lib files and make a little wizard to start it up with the baasic start code for running the engine
were can i find this out pease
convert a project to lib or dll
Started by thedodgeruk, Feb 03 2012 02:52 PM
2 replies to this topic
Ad:
#2 Members - Reputation: 133
Posted 04 February 2012 - 05:13 AM
Hmmm, i'd like to know this too so it's said nobody replied to this yet. What i do now is create a helper library in the same project and copy/paste the stuff i need for my project into it. This often results in copying a lot of classes while i could just write:
So, i bump this.
using MyAwesomeLibraryThatIsAlwaysNeeded;
So, i bump this.
Current Project: TechnoFlux read all about it on my
#3 Members - Reputation: 155
Posted 04 February 2012 - 06:49 AM
I you are using c++ creating a LIB is very easy, just change the application type to lib and in your projects link to this lib and include all the headers from the engine.
If you want to create dll, you probably should have thought about that before you started with the engine since it require you to really split apart the engine with interfaces and if you want to make the dll portable you can only have a C interface.
Also state what language you are using.
If you want to create dll, you probably should have thought about that before you started with the engine since it require you to really split apart the engine with interfaces and if you want to make the dll portable you can only have a C interface.
Also state what language you are using.
Blekinge Institute of Technology
Twitter @devmoon
Homepage http://devmoon.se
Also have skype for any chit chat about programming, msg me for id.
Twitter @devmoon
Homepage http://devmoon.se
Also have skype for any chit chat about programming, msg me for id.


















