VC++.NET Help

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
Guest

VC++.NET Help

Post by Guest »

Is there a tutorials where I can set up a project in VC++.Net 2003 for IRRLICHT?...
dakz0rz
Posts: 9
Joined: Thu Sep 16, 2004 10:10 am

Post by dakz0rz »

Argh!
Last edited by dakz0rz on Sun Nov 21, 2004 5:54 am, edited 1 time in total.
saigumi
Posts: 921
Joined: Fri Aug 22, 2003 11:31 am
Location: St. Louis, MO USA
Contact:

Post 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.
Crud, how do I do this again?
mindwarp
Posts: 2
Joined: Mon Sep 13, 2004 7:29 pm

Re: VC++.NET Help

Post 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.
Post Reply