aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--premake5.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/premake5.lua b/premake5.lua
index 1043c07..bee25af 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -13,16 +13,16 @@ local lua_lib_path = "/usr/lib"
if os.findlib("lua5.4") then
lua_inc_path = "/usr/include/lua5.4"
lua_lib_path = "/usr/lib/5.4"
--- Readline for better interactive support, dl for dynamic loading, and m for the math library dependency
+ -- Readline for better interactive support, dl for dynamic loading, and m for the math library dependency
links({ "lua5.4", "readline", "dl", "m" })
else
links({ "lua" })
end
-includedirs({
- lua_inc_path,
+includedirs({
+ lua_inc_path,
"lib/hashmap",
- "lib/compat53/c-api"
+ "lib/compat53/c-api",
})
libdirs({ lua_lib_path })
@@ -31,15 +31,15 @@ files({
"src/**.c",
"lib/hashmap/**.h",
"lib/hashmap/**.c",
- "lib/compat53/c-api/compat-5.3.h",
- "lib/compat53/c-api/compat-5.3.c",
- "lib/compat53/lbitlib.c",
- "lib/compat53/liolib.c",
- "lib/compat53/lstrlib.c",
- "lib/compat53/ltablib.c",
- "lib/compat53/lutf8lib.c"
+ "lib/compat53/c-api/compat-5.3.h",
+ "lib/compat53/c-api/compat-5.3.c",
+ "lib/compat53/lbitlib.c",
+ "lib/compat53/liolib.c",
+ "lib/compat53/lstrlib.c",
+ "lib/compat53/ltablib.c",
+ "lib/compat53/lutf8lib.c",
})
-defines({ 'LUSH_VERSION="0.3.2"', 'COMPAT53_PREFIX=""', 'LUA_COMPAT_BITLIB' })
+defines({ 'LUSH_VERSION="0.4.0"', 'COMPAT53_PREFIX=""', "LUA_COMPAT_BITLIB" })
filter("configurations:Debug")
defines({ "DEBUG" })