diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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", |