diff options
| author | Martin Ridgers <[email protected]> | 2021-10-28 11:33:47 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-11-18 15:24:39 +0100 |
| commit | 4df0770ffe6fb03ed7b5248a7fadef935d856ad3 (patch) | |
| tree | a79a51c4c3fccd7a99562a99edd7caa67ec88ee2 /xmake.lua | |
| parent | Filled out ZEN_THIRDPARTY_ macros for Clang and GCC (diff) | |
| download | zen-4df0770ffe6fb03ed7b5248a7fadef935d856ad3.tar.xz zen-4df0770ffe6fb03ed7b5248a7fadef935d856ad3.zip | |
Initial integration of Trace from UE5 via the --zentrace=y xmake config
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -116,6 +116,14 @@ option("zenmesh") option_end() add_define_by_config("ZEN_ENABLE_MESH", "zenmesh") +option("zentrace") + set_default(false) + set_showmenu(true) + set_description("Enable UE's Trace support") + add_includedirs("thirdparty/trace") +option_end() +add_define_by_config("ZEN_WITH_TRACE", "zentrace") + set_warnings("allextra", "error") set_languages("cxx20") |