diff options
| author | Stefan Boberg <[email protected]> | 2022-06-11 23:22:00 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2022-06-11 23:22:00 +0200 |
| commit | 348ae50c946b541ce935703045ab98a49d809ed4 (patch) | |
| tree | a400285c9e5ae215dc7ef3b2958ce922f48ec7bc /xmake.lua | |
| parent | fixed mac build ("unused" variable) (diff) | |
| parent | clang-format fix (diff) | |
| download | zen-348ae50c946b541ce935703045ab98a49d809ed4.tar.xz zen-348ae50c946b541ce935703045ab98a49d809ed4.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -108,7 +108,9 @@ end if is_os("windows") then option("vfs") - set_showmenu(true) + -- note: this is an old prototype and is not functional at all at the moment + set_default(false) + set_showmenu(false) set_description("Enable VFS functionality") option_end() add_define_by_config("ZEN_WITH_VFS", "vfs") @@ -121,6 +123,13 @@ if is_os("windows") then add_define_by_config("ZEN_WITH_HTTPSYS", "httpsys") end +option("catch2") + set_default(false) + set_showmenu(true) + set_description("Use catch2 to run tests") +option_end() +add_define_by_config("ZEN_USE_CATCH2", "catch2") + option("compute") set_default(true) set_showmenu(true) @@ -136,6 +145,7 @@ option_end() add_define_by_config("ZEN_WITH_EXEC_SERVICES", "exec") option("zenmesh") + -- note: this is an old prototype and is not functional at all at the moment set_default(false) set_showmenu(true) set_description("Enables Zen's mesh feature") |