diff options
| author | Stefan Boberg <[email protected]> | 2026-02-12 15:29:13 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-02-12 15:29:13 +0100 |
| commit | fb6bf42e0b074e9dd0a3e4f5f3e02782bf780f2c (patch) | |
| tree | bd8c2ac6843d5c3c83947c6d89f9c4468273bc90 /xmake.lua | |
| parent | add IsLocalMachineRequest to HttpServerRequest (#749) (diff) | |
| download | zen-fb6bf42e0b074e9dd0a3e4f5f3e02782bf780f2c.tar.xz zen-fb6bf42e0b074e9dd0a3e4f5f3e02782bf780f2c.zip | |
bump sentry to 0.12.1 (#721)
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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() |