Samples.lua premake script: correction to make it work
Posted: Sat Sep 26, 2009 12:07
Hi,
while creating the CEGUI MSVC 2008 Samples solutions with premake (both latest svn and current stable 0.7 sources) i noted a little problem.
In fact, to make the script work, i just had to remove the lua extensions at the 'require()' calls of lines 7 and 8 of samples.lua script.
Before :
line 7 : require("helpers.lua")
line 8 : require("config.lua")
The working script is now like :
line 7 : require("helpers")
line 8 : require("config")
Hope this helps!!
Aurelien
while creating the CEGUI MSVC 2008 Samples solutions with premake (both latest svn and current stable 0.7 sources) i noted a little problem.
In fact, to make the script work, i just had to remove the lua extensions at the 'require()' calls of lines 7 and 8 of samples.lua script.
Before :
line 7 : require("helpers.lua")
line 8 : require("config.lua")
The working script is now like :
line 7 : require("helpers")
line 8 : require("config")
Hope this helps!!
Aurelien