Project organisation problem

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Andrey
Posts: 17
Joined: Sat Aug 05, 2006 6:53 pm
Location: Ukraine

Project organisation problem

Post by Andrey »

So, I want to have in my project 3 solutions :
1. logical core
2. graphical core
3. and main solution, which must unite and control the first two solutions.

So, I made first two solutions as static libraries in my project, and third -- as .exe.
My graphical core uses Irrlicht.dll and I think, this is the reason for the run-time errors I become. May it be so? May the static library use the functions from the dynamic one? If it can not to do so, what I can do in this case with my project to bring it to life?
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Yes, that works. But you can also compile Irrlicht as static library.
Post Reply