diff options
| author | Joe Kirchoff <[email protected]> | 2022-03-22 11:47:38 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-03-22 11:47:38 -0700 |
| commit | cc5adf4cb79c92993fabfe09e75dfadb7d4c9665 (patch) | |
| tree | 4ba0a18f68e39685fa784d872bbb4bb9ba2b6fd7 /xmake.lua | |
| parent | move workthreadpool to zencore (#63) (diff) | |
| download | zen-cc5adf4cb79c92993fabfe09e75dfadb7d4c9665.tar.xz zen-cc5adf4cb79c92993fabfe09e75dfadb7d4c9665.zip | |
Enable Horde compute code on Linux & Mac (#61)
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) |