diff options
| author | Martin Ridgers <[email protected]> | 2021-11-17 13:26:51 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-11-17 13:26:51 +0100 |
| commit | 7b7cd003f46931e8c5b46f679215e2822326467a (patch) | |
| tree | f22aec1841d1e5726173843cb6b0a892b9502f06 /xmake.lua | |
| parent | Convert remaining xmake config options to set the define by has_config() (diff) | |
| download | zen-7b7cd003f46931e8c5b46f679215e2822326467a.tar.xz zen-7b7cd003f46931e8c5b46f679215e2822326467a.zip | |
Added a "zenmesh" config option
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -103,6 +103,13 @@ option("compute") option_end() add_define_by_config("ZEN_WITH_COMPUTE_SERVICES", "compute") +option("zenmesh") + set_default(false) + set_showmenu(true) + set_description("Enables Zen's mesh feature") +option_end() +add_define_by_config("ZEN_ENABLE_MESH", "zenmesh") + set_warnings("allextra", "error") set_languages("cxx20") |