summaryrefslogtreecommitdiff
path: root/Externals/Lua/SConscript
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2011-02-03 20:41:23 +0000
committerJordan Woyak <jordan.woyak@gmail.com>2011-02-03 20:41:23 +0000
commitdfe84ce0acf288157a867f0df1678930b281fd40 (patch)
tree207487a6e4cf4f2438de3b527e1062fd02f7154a /Externals/Lua/SConscript
parent1619e176ff70ad8b47a6dd4fcb4b8721e0c528bf (diff)
Removed the Lua script console and Externals/Lua. The script console was incomplete and no one was working on it.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7051 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Externals/Lua/SConscript')
-rw-r--r--Externals/Lua/SConscript45
1 files changed, 0 insertions, 45 deletions
diff --git a/Externals/Lua/SConscript b/Externals/Lua/SConscript
deleted file mode 100644
index 88340cb763..0000000000
--- a/Externals/Lua/SConscript
+++ /dev/null
@@ -1,45 +0,0 @@
-# -*- python -*-
-
-Import('env')
-import sys
-
-luaenv = env.Clone()
-
-if not sys.platform == 'win32':
- luaenv['CPPDEFINES'].append('LUA_USE_LINUX') # Also works for OS X
-
-files = [
- 'lapi.c',
- 'lauxlib.c',
- 'lbaselib.c',
- 'lcode.c',
- 'ldblib.c',
- 'ldebug.c',
- 'ldo.c',
- 'ldump.c',
- 'lfunc.c',
- 'lgc.c',
- 'linit.c',
- 'liolib.c',
- 'llex.c',
- 'lmathlib.c',
- 'lmem.c',
- 'loadlib.c',
- 'lobject.c',
- 'lopcodes.c',
- 'loslib.c',
- 'lparser.c',
- 'lstate.c',
- 'lstring.c',
- 'lstrlib.c',
- 'ltable.c',
- 'ltablib.c',
- 'ltm.c',
- 'lundump.c',
- 'lvm.c',
- 'lzio.c',
- 'print.c',
- ]
-
-luaenv.StaticLibrary(env['local_libs'] + "lua", files)
-env['CPPPATH'] += ['#Externals/Lua']