MSVC8.
I can either link dynamically or statically, I don't really mind; am I correct in thinking that if I link dynamically, I need to put the DLL files in the same directory as the executable for it to run?
You're working on your bank holiday, kudos.
EDIT
I got it working with a dynamic link by using the list from here:
http://www.cegui.org.uk/phpBB2/viewtopi ... 4489#14489
I had to rebuild CEGUI from source so that it worked with my version of DirectX, but that was it.
I would just like to point out that in
this tutorial, you say:
Create the CEGUI::System object to initialise the system
Another extremely simple step. Just instantiate the CEGUI::System object by using 'new' and passing in a pointer to the CEGUI::Renderer that you created in the previous step. This will cause the entire system to initialise itself.
new CEGUI::System( myRenderer );
I find that a little misleading because if you do not store a pointer to that new'd object, it will cause a memory leak because you can't delete it later.