Page 1 of 1

VC++ .NEt

Posted: Tue Apr 06, 2004 3:41 pm
by rogerdv
Can somebody explain me how to create an Irrlicht project in Visual Studio .net? I cant find how to add the lib and set the correct path to the include dirs.

Posted: Tue Apr 06, 2004 3:48 pm
by R00mpel
Just open the solution explorer, right-click on your project's name and choose "Properties"... Or you can also set all paths in the "Tools->Options->Projects->VC++ Directories" window...

Posted: Tue Apr 06, 2004 4:08 pm
by codechief
Yes, and whilst you are there, point the "Source Files" directory to Irrrlicht's source directory (after you've unzipped Irrlicht's source files). Enabling this option gives you Intellisense too and that is cool.

If you do not see Irrlicht's Intellisense, then try including a C++ standard directory like iostream.h and then calling cout. You should now see Intellisense for both, iostream and Irrlicht. Of course, in all this I am presuming you've included "Irrlicht.h"

Hope this helps...

cc