aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index d2e061852..ab940aeb6 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -442,6 +442,13 @@ option("zennomad")
option_end()
add_define_by_config("ZEN_WITH_NOMAD", "zennomad")
+option("zenovermind")
+ set_default(compute_default)
+ set_showmenu(true)
+ set_description("Enable Overmind worker provisioning")
+option_end()
+add_define_by_config("ZEN_WITH_OVERMIND", "zenovermind")
+
if is_os("windows") then
add_defines("UE_MEMORY_TRACE_AVAILABLE=1")
@@ -501,6 +508,9 @@ end
if has_config("zennomad") then
includes("src/zennomad")
end
+if has_config("zenovermind") then
+ includes("src/zenovermind")
+end
includes("src/zenstore", "src/zenstore-test")
includes("src/zentelemetry", "src/zentelemetry-test")
includes("src/zenutil", "src/zenutil-test")