msvc 5 and compile-errors

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
superbaer
Posts: 1
Joined: Sat Feb 14, 2004 1:38 pm

msvc 5 and compile-errors

Post by superbaer »

hoy!

i have some probs to run an simple irrlicht-app. my main.cpp contains the following:

Code: Select all

#include <Irrlicht.h>
using namespace irr;

#pragma comment(lib, "Irrlicht.lib")

int main()
{
    return 0;
}
if i try to build vc throw this error-msg:

--------------------Configuration: main - Win32 Debug--------------------
Compiling...
main.cpp
E:\CODING\LIBS_C\IRRLICHT-0.4.2\INCLUDE\vector2d.h(75) : error C2065: 'gradPI2' : undeclared identifier
Error executing cl.exe.
main.exe - 1 error(s), 0 warning(s)

any ideas how to solve this prob? must i use msvc 6?

thanx in advance
sebastian
42

Post by 42 »

if you have the possibiliy then get vc7 2003.
it supports STL out of the box,and it compiles the CVS version of boost :)
and most of all irrlicht compiles very smoothly

good luck
42
Guest

Post by Guest »

yeah tnx - with vc6 all src's compiles fine ;)

seb.
Post Reply