summaryrefslogtreecommitdiff
path: root/core/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/xmake.lua')
-rw-r--r--core/xmake.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/xmake.lua b/core/xmake.lua
index 0c667af7c..a2029cff2 100644
--- a/core/xmake.lua
+++ b/core/xmake.lua
@@ -5,7 +5,7 @@ set_project("xmake")
set_version("2.8.5", {build = "%Y%m%d"})
-- set xmake min version
-set_xmakever("2.2.3")
+set_xmakever("2.8.5")
-- set all warnings as errors
set_warnings("all", "error")
@@ -111,3 +111,9 @@ end
if is_plat("windows") then
includes("src/pdcurses")
end
+
+-- add xpack
+includes("@builtin/xpack")
+if xpack then
+ includes("xpack.lua")
+end