Hi Yodathegreat,
I tryed lot of times to configure with Irrlicht ans I nerver had :
Building Irrlicht Renderer yes
I use this config.lua:
Code: Select all
--
-- CEGUI premake configuration script
--
-- comment this to disable debug suffixes for dynamic module dlls
-- if you want to use another suffix, just change the string :)
-- all the debug cegui libraries are built with this suffix
DEBUG_DLL_SUFFIX = "_d"
-- SDK / dependency paths
-- { base, include_suffix, library_suffix }
-- base can be absolute or relative to the root cegui_mk2 dir
-- IRRLICHT_PATHS = { "../irrlicht-1.0", "include", "lib/Win32-visualstudio" }
-------------
-- Renderers
-- this controls which renderer modules are built
OPENGL_RENDERER = true
DIRECTX81_RENDERER = true
DIRECTX9_RENDERER = true
IRRLICHT_RENDERER = true
----------------
-- Image Codecs
-- this controls which image codecs are built
TGA_IMAGE_CODEC = true
SILLY_IMAGE_CODEC = true
DEVIL_IMAGE_CODEC = true
FREEIMAGE_IMAGE_CODEC = true
CORONA_IMAGE_CODEC = true
-- this setting selects the default image codec module
-- can be either "tga", "silly", "devil", "freeimage" or "corona"
-- SILLY was written for CEGUI
DEFAULT_IMAGE_CODEC = "tga"
and this cmd line:
Code: Select all
./configure --with-irrlicht-incdir=`pwd` --with-irrlicht-libdir=`pwd` --enable-Irrlicht-renderer
I get this:checking for main in -lIrrlicht... yes
checking for XF86VidModeQueryVersion in -lXxf86vm... yes
configure: Irrlicht renderer disabled
I dont understand why it can link with Irrlicht and not unable the Irrlicht renderer. I put it true in the config.lua!!!
Do you have an idea?