diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 26 |
1 files changed, 12 insertions, 14 deletions
@@ -115,21 +115,19 @@ function add_define_by_config(define, config_name) add_defines(define.."="..value) end -if not is_arch("arm64") then - option("zensentry") - set_default(true) - set_showmenu(true) - set_description("Enables Sentry support in Zen") - option_end() - add_define_by_config("ZEN_USE_SENTRY", "zensentry") -end +option("zensentry") + set_default(true) + set_showmenu(true) + set_description("Enables Sentry support") +option_end() +add_define_by_config("ZEN_USE_SENTRY", "zensentry") - option("zenmimalloc") - set_default(true) - set_showmenu(true) - set_description("Use MiMalloc as Zen's allocator") - option_end() - add_define_by_config("ZEN_USE_MIMALLOC", "zenmimalloc") +option("zenmimalloc") + set_default(true) + set_showmenu(true) + set_description("Use MiMalloc for faster memory management") +option_end() +add_define_by_config("ZEN_USE_MIMALLOC", "zenmimalloc") if is_os("windows") then option("httpsys") |