diff options
| author | Martin Ridgers <[email protected]> | 2021-11-03 09:25:09 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-11-03 09:25:09 +0100 |
| commit | 55a0f5047c069c82e741ecc917e65827377fcda9 (patch) | |
| tree | 2d0ac1e3e89ccfb70256c1d6a2a4613d2aaf7c69 /xmake.lua | |
| parent | Missing include (diff) | |
| download | zen-55a0f5047c069c82e741ecc917e65827377fcda9.tar.xz zen-55a0f5047c069c82e741ecc917e65827377fcda9.zip | |
Wrapped /apply/ and /exec/ services in a ZEN_WITH_COMPUTE_SERVICES define
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -75,6 +75,13 @@ if is_os("windows") then set_description("Enable http.sys server") add_defines("ZEN_WITH_HTTPSYS") option_end() + + option("compute") + set_default(true) + set_showmenu(true) + set_description("Enable compute services endpoint") + add_defines("ZEN_WITH_COMPUTE_SERVICES") + option_end() end set_warnings("allextra", "error") |