Begining of porting the luainteface to linux + some other small fixes.

(could use some help with lua macros)


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4515 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-11-08 08:54:09 +00:00
parent 1b7303ea0a
commit 60f142ce96
5 changed files with 55 additions and 56 deletions

View File

@ -16,6 +16,7 @@ files = ["ActionReplay.cpp",
"MemTools.cpp",
"PatchEngine.cpp",
"PluginManager.cpp",
"LuaInterface.cpp",
"State.cpp",
"Tracer.cpp",
"VolumeHandler.cpp",
@ -84,7 +85,7 @@ files = ["ActionReplay.cpp",
"PowerPC/Interpreter/Interpreter_LoadStore.cpp",
"PowerPC/Interpreter/Interpreter_LoadStorePaired.cpp",
"PowerPC/Interpreter/Interpreter_SystemRegisters.cpp",
"PowerPC/Interpreter/Interpreter_Tables.cpp",
"PowerPC/Interpreter/Interpreter_Tables.cpp",
"PowerPC/JitCommon/JitCache.cpp",
"PowerPC/JitCommon/JitBackpatch.cpp",
"PowerPC/JitCommon/Jit_Util.cpp",
@ -136,6 +137,7 @@ else:
libs = [
'bdisasm',
'inputcommon',
'lua'
]
env_core = env.Clone();