aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index 3cf4815f9..57e2f3390 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -166,6 +166,7 @@ task("bundle")
description = "Create Zip bundle from binaries",
options = {
{nil, "withtrace", "k", nil, "Compiles with trace support"},
+ {nil, "codesignidentity", "v", nil, "Code signing identity"},
}
}
on_run(function ()
@@ -173,6 +174,16 @@ task("bundle")
bundle()
end)
+task("updatefrontend")
+ set_menu {
+ usage = "xmake updatefrontend",
+ description = "Create Zip of the frontend/html folder for bundling with zenserver executable",
+ }
+ on_run(function()
+ import("scripts.updatefrontend")
+ updatefrontend()
+ end)
+
task("precommit")
set_menu {
usage = "xmake precommit",