diff options
Diffstat (limited to 'lua/SConscript')
-rw-r--r-- | lua/SConscript | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lua/SConscript b/lua/SConscript deleted file mode 100644 index 404a10e..0000000 --- a/lua/SConscript +++ /dev/null @@ -1,22 +0,0 @@ -import glob - -Import('env') - -lualib_env = env.Copy() - -lualib_src = glob.glob("lua-5.1/src/*.c") - -# remove unwanted compiler and interpreter files -lualib_src.remove("lua-5.1/src/lua.c") -lualib_src.remove("lua-5.1/src/luac.c") -lualib_src.remove("lua-5.1/src/print.c") - -lualib_env.StaticLibrary("liblua", lualib_src) - -lua_env = env.Copy() - -lua_env.Append(LIBS = "lua") -lua_env.Append(LIBPATH = ".") -lua_env.Append(CCFLAGS = " -I./lua/lua-5.1/src") -lua_env.StaticLibrary("lua_bindings", ["lua_bindings.c"]) - |