moved non-lua dlls to bin
This commit is contained in:
BIN
estrela.exe
BIN
estrela.exe
Binary file not shown.
@@ -8,10 +8,10 @@ return {
|
||||
xpcall(function() dofile '%s' end,
|
||||
function(err) print(debug.traceback(err)) end)
|
||||
]]):format(filepath:gsub("\\","/"))
|
||||
return '"'..mainpath..'/lualibs/lua.exe" -e "'..code..'"'
|
||||
return '"'..mainpath..'/bin/lua.exe" -e "'..code..'"'
|
||||
end,
|
||||
fprojdir = function(fname)
|
||||
return ide.editorFilename..'/lualibs/' --fname:GetPath(wx.wxPATH_GET_VOLUME)
|
||||
return fname:GetPath(wx.wxPATH_GET_VOLUME)
|
||||
end,
|
||||
capture = true,
|
||||
fworkdir = function (filepath)
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
-- authors: Luxinia Dev (Eike Decker & Christoph Kubisch)
|
||||
---------------------------------------------------------
|
||||
|
||||
-- Load the wxLua module, does nothing if running from wxLua, wxLuaFreeze, or wxLuaEdit
|
||||
package.cpath = package.cpath..";./?.dll;./?.so;../lib/?.so;../lib/vc_dll/?.dll;../lib/bcc_dll/?.dll;../lib/mingw_dll/?.dll;"
|
||||
require("wx")
|
||||
require("bit")
|
||||
|
||||
|
||||
@@ -77,9 +77,8 @@ int main (int argc, char *argv[])
|
||||
SetCurrentDirectory(buffer);
|
||||
|
||||
|
||||
SetDllDirectory(".\\lualibs\\");
|
||||
SetDllDirectory(".\\bin\\");
|
||||
hinstLib = LoadLibrary("lua5.1.dll");
|
||||
SetDllDirectory(".\\lualibs\\wx\\");
|
||||
if (hinstLib != NULL)
|
||||
{
|
||||
luaL_newstate = (voidfunc*) GetProcAddress(hinstLib, "luaL_newstate");
|
||||
|
||||
Reference in New Issue
Block a user