I followed the tutorial on how to setup devc++, but it doesnt seem to work for me still.
Code: Select all
#include "irrlicht.h"
// Irrlicht Namespaces
using namespace irr;
using namespace core;
using namespace scene;
using namespace video;
using namespace io;
using namespace gui;
int main()
{
IrrlichtDevice* irrDevice = createDevice(EDT_SOFTWARE,dimension2d<s32>(512, 384),16,false,false,0);
irrDevice->setWindowCaption("Dev-C++ and the Irrlicht Engine!");
irrDevice->drop();
return(0);
}
COMPLIE and i get error :
no matching function for call to `irr::IrrlichtDevice::
I have put the include path in the project pointing to \includes
Can someone point me in the right direction to what I have not done.