aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake.lua b/xmake.lua
index 18429de61..5d3162e46 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -113,11 +113,11 @@ if is_plat("linux") and os.getenv("UE_TOOLCHAIN_DIR") then
end
if has_config("zensentry") and not use_asan then
if is_plat("linux") then
- add_requires("sentry-native 0.7.6")
+ add_requires("sentry-native 0.12.1", {configs = {backend = "crashpad"}})
elseif is_plat("windows") then
- add_requires("sentry-native 0.7.6", {debug = is_mode("debug"), configs = {backend = "crashpad"}})
+ add_requires("sentry-native 0.12.1", {debug = is_mode("debug"), configs = {backend = "crashpad"}})
else
- add_requires("sentry-native 0.7.6", {configs = {backend = "crashpad"}})
+ add_requires("sentry-native 0.12.1", {configs = {backend = "crashpad"}})
end
end
--add_rules("c++.unity_build")
@@ -209,7 +209,7 @@ function add_define_by_config(define, config_name)
end
option("zensentry")
- set_default(false)
+ set_default(true)
set_showmenu(true)
set_description("Enables Sentry support")
option_end()