moved non-lua dlls to bin

This commit is contained in:
crazybutcher
2011-03-06 14:37:44 +01:00
parent 13edb56da2
commit 7cb170b0b9
19 changed files with 3 additions and 6 deletions

Binary file not shown.

View File

@@ -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)

View File

@@ -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")

View File

@@ -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");