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.
Armen138
Posts: 298 Joined: Mon Feb 23, 2004 3:38 am
Post
by Armen138 » Sat Jun 12, 2004 5:12 pm
how do i edit the irrlicht makefile to use tinyXML in my project?
Tyn
Posts: 932 Joined: Thu Nov 20, 2003 7:53 pm
Location: England
Contact:
Post
by Tyn » Sat Jun 12, 2004 6:10 pm
You don't need to compile the engine again to use TinyXML, it works seperatly and doesn't need a library file.
Armen138
Posts: 298 Joined: Mon Feb 23, 2004 3:38 am
Post
by Armen138 » Sat Jun 12, 2004 6:22 pm
heh i guess i wasnt really clear on what i'm trying to do
im not trying to recompile the engine,
but i use the makefile from the examples to compile my own project.
Gorgon Zola
Posts: 118 Joined: Thu Sep 18, 2003 10:05 pm
Location: switzerland
Post
by Gorgon Zola » Sun Jun 13, 2004 11:04 am
Just add all tinyXML files to Your project.
Drop them into the same folder as your other files.
add the new c/cpp files to the line
$(CPP) main.cpp ((newfiles_here)) -o example $(OPTS)
don't know if that really is all but it should give you a direction where to search.
Armen138
Posts: 298 Joined: Mon Feb 23, 2004 3:38 am
Post
by Armen138 » Sun Jun 13, 2004 11:02 pm
i figured it out by looking at the techdemo makefile