aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorJoe Kirchoff <[email protected]>2022-03-22 11:47:38 -0700
committerGitHub <[email protected]>2022-03-22 11:47:38 -0700
commitcc5adf4cb79c92993fabfe09e75dfadb7d4c9665 (patch)
tree4ba0a18f68e39685fa784d872bbb4bb9ba2b6fd7 /xmake.lua
parentmove workthreadpool to zencore (#63) (diff)
downloadzen-cc5adf4cb79c92993fabfe09e75dfadb7d4c9665.tar.xz
zen-cc5adf4cb79c92993fabfe09e75dfadb7d4c9665.zip
Enable Horde compute code on Linux & Mac (#61)
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/xmake.lua b/xmake.lua
index 13092d7e3..1abe87642 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -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)