tinyXML+Irrlicht

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
Armen138
Posts: 298
Joined: Mon Feb 23, 2004 3:38 am

tinyXML+Irrlicht

Post by Armen138 »

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 »

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 »

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 »

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 »

i figured it out by looking at the techdemo makefile
Post Reply