From: John L. <jr...@us...> - 2007-07-04 05:39:26
|
Update of /cvsroot/wxlua/wxLua/samples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv478/wxLua/samples Modified Files: luamodule.wx.lua Log Message: Add wxAUI library and rebuild all build files Cleanup Makefiles using wx-config and include common bits to simplify them Index: luamodule.wx.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/samples/luamodule.wx.lua,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** luamodule.wx.lua 25 Jun 2007 03:32:35 -0000 1.5 --- luamodule.wx.lua 4 Jul 2007 05:39:22 -0000 1.6 *************** *** 12,20 **** -- to make this sample script work out-of-the-box, we need to add -- to the paths looked by require() all possible locations of the ! -- wx.dll/.so module. -- Please also note that this sample can be executed only when -- wxLua has been compiled in shared mode (--enable-shared on Unix, -- SHARED=1 on Windows) ! package.cpath = ";;../lib/?.so;./?.dll;../lib/vc_dll/?.dll;../lib/bcc_dll/?.dll;../lib/mingw_dll/?.dll;" require("wx") --- 12,20 ---- -- to make this sample script work out-of-the-box, we need to add -- to the paths looked by require() all possible locations of the ! -- wx.dll/.so module when this script is run from the samples dir. -- Please also note that this sample can be executed only when -- wxLua has been compiled in shared mode (--enable-shared on Unix, -- SHARED=1 on Windows) ! package.cpath = ";;./?.dll;./?.so;../lib/?.so;../lib/vc_dll/?.dll;../lib/bcc_dll/?.dll;../lib/mingw_dll/?.dll;" require("wx") |