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