aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake.lua b/xmake.lua
index 845ac6660..62c02c629 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -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")