diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -39,8 +39,6 @@ if is_plat("windows") then add_requires("7z") end -if not is_arch("arm64") then - add_requires("vcpkg::mimalloc") if has_config("zensentry") then if is_plat("linux") then add_requires("vcpkg::sentry-native 0.5.4") @@ -48,6 +46,9 @@ if not is_arch("arm64") then add_requires("vcpkg::sentry-native") end end + +if not is_arch("arm64") then + add_requires("vcpkg::mimalloc") end add_rules("mode.debug", "mode.release") |