diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -119,12 +119,19 @@ if is_os("windows") then end option("compute") - set_default(is_os("windows")) + set_default(true) set_showmenu(true) set_description("Enable compute services endpoint") option_end() add_define_by_config("ZEN_WITH_COMPUTE_SERVICES", "compute") +option("exec") + set_default(is_os("windows")) + set_showmenu(true) + set_description("Enable exec services endpoint") +option_end() +add_define_by_config("ZEN_WITH_EXEC_SERVICES", "exec") + option("zenmesh") set_default(false) set_showmenu(true) |