aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-10-27 14:01:59 +0100
committerStefan Boberg <[email protected]>2025-10-27 14:01:59 +0100
commit9c698b8966ef6e2e8856f4c960a3e97186312aa0 (patch)
treedc64f0a602dac02a4e33fc9bbebae373ec0abca8 /xmake.lua
parentbump mac/win sentry-native version to 0.11.3 to see if it works better (diff)
downloadzen-9c698b8966ef6e2e8856f4c960a3e97186312aa0.tar.xz
zen-9c698b8966ef6e2e8856f4c960a3e97186312aa0.zip
tweaks for sentry-native build on Windows
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake.lua b/xmake.lua
index b9010c6cd..2512033bb 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -3,6 +3,8 @@
set_configvar("ZEN_SCHEMA_VERSION", 5) -- force state wipe after 0.2.31 causing bad data (dan.engelbrecht)
add_repositories("zen-repo repo")
+set_policy("build.ccache", false)
+set_policy("package.precompiled", false)
add_requires("xxhash 0.8.2", {system = false})
add_requires("lz4", {system = false})
@@ -15,8 +17,6 @@ add_requires("libcurl", {system = false})
add_defines("EASTL_STD_ITERATOR_CATEGORY_ENABLED", "EASTL_DEPRECATIONS_FOR_2024_APRIL=EA_DISABLED")
-set_policy("build.ccache", false)
-
if is_plat("windows") then
add_defines("ZEN_USE_OPENSSL=0")
else
@@ -43,7 +43,7 @@ if has_config("zensentry") then
if is_plat("linux") then
add_requires("sentry-native 0.7.6")
else
- add_requires("sentry-native 0.11.3") -- matches vcpkg version (2024-06-15)
+ add_requires("sentry-native 0.7.6", {configs = {backend = "breakpad"}})
end
end