Page 1 of 1

VC++.NET Help

Posted: Thu Sep 16, 2004 10:12 am
by Guest
Is there a tutorials where I can set up a project in VC++.Net 2003 for IRRLICHT?...

Posted: Thu Sep 16, 2004 10:13 am
by dakz0rz
Argh!

Posted: Thu Sep 16, 2004 2:06 pm
by saigumi
There are plenty of SLN files to look at in the tutorials.

The only thing you have to set up in VC is the include and lib directories.

Re: VC++.NET Help

Posted: Thu Sep 16, 2004 2:46 pm
by mindwarp
Anonymous wrote:Is there a tutorials where I can set up a project in VC++.Net 2003 for IRRLICHT?...
Make a new Win32 Project, on more options click "Empty Project". Make a new file, like main.cpp, then just put

Code: Select all

#include <irrlicht.h>
and

Code: Select all

#pragma comment(lib, "Irrlicht.lib")
Then in the solution explorer, right click on your project name, and go to properties. Under C/C++ -> General, add your irrlicht/include directory in the field named "Addition Include Directories". Under Linker -> General in the "Additional Library Directories" put irrlicht/lib

And then you are rocking.