Hi @ all
I'm searching to install irrlicht to MingW, but I don't find the solution here because you are using ide's
and I don't want to work with an ide
Can anyone help me?
thx
Irrlicht & MingW
Maybe you should look for the questions about DevCpp or CodeBlocks...
This IDEs are using MinGW as compiler...
BTW, if you really want to code with Notepad (or something similar), all right, it's your choise...
But I really suggest you to use Code::Blocks !!!
It's totaly free and uses MinGW (beside many others, but MinGW is installed by default) - and be sure to use the nightly builds !!!
This IDEs are using MinGW as compiler...
BTW, if you really want to code with Notepad (or something similar), all right, it's your choise...
But I really suggest you to use Code::Blocks !!!
It's totaly free and uses MinGW (beside many others, but MinGW is installed by default) - and be sure to use the nightly builds !!!
while(!asleep) sheep++;
IrrExtensions:
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
IrrExtensions:
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
Strange that you use MinGW but don't know how to use a library with it. I personally have msys and mingw installed as c:\msys and c:\msys\mingw respectively. I then put the includes under c:\msys\include\irrlicht and the .a libs under c:\msys\lib. For a simple compiling of one file:
g++ file.cpp -o file.exe -I/include/irrlicht -L/lib -lIrrlicht
g++ file.cpp -o file.exe -I/include/irrlicht -L/lib -lIrrlicht