Page 1 of 1

Irrlicht & MingW

Posted: Mon Apr 17, 2006 11:06 am
by izguit
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

Posted: Mon Apr 17, 2006 11:11 am
by xDan
I guess just install from mingw.org then link the .a libs in irrlicht.

Posted: Mon Apr 17, 2006 12:23 pm
by sudi
Why do u not want to use ides

Posted: Mon Apr 17, 2006 1:42 pm
by Acki
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 !!! ;)

Posted: Mon Apr 17, 2006 6:12 pm
by izguit
hehe I knew that i would get these replys :D
But it's for a project, that is like an ide... (but not an ide i'm not crazy, it isn't :) moreover, i've installed devCpp :) )
I will try your tip xDan

Posted: Tue Apr 18, 2006 9:24 am
by Frobozz
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