diff options
| author | Stefan Boberg <[email protected]> | 2025-10-26 19:39:53 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-10-26 19:39:53 +0100 |
| commit | 60850738387deae45db61d7e549a026c9021a9a8 (patch) | |
| tree | ba6454dae5275820c38f9490c1acea145aec2b2a /xmake.lua | |
| parent | remove vcpkg from github actions (diff) | |
| download | zen-60850738387deae45db61d7e549a026c9021a9a8.tar.xz zen-60850738387deae45db61d7e549a026c9021a9a8.zip | |
curl default to mbedtls in package definition
also bumped Linux sentry-native to 0.7.6 to match other targets
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ add_requires("http_parser", {system = false}) add_requires("mimalloc", {system = false}) add_requires("eastl", {system = false}) add_requires("zlib", {system = false}) -add_requires("libcurl", {alias="curl", system = false, configs = {mbedtls = true}}) +add_requires("libcurl", {system = false}) add_defines("EASTL_STD_ITERATOR_CATEGORY_ENABLED", "EASTL_DEPRECATIONS_FOR_2024_APRIL=EA_DISABLED") @@ -41,7 +41,7 @@ end if has_config("zensentry") then if is_plat("linux") then - add_requires("sentry-native 0.5.4") + add_requires("sentry-native 0.7.6") else add_requires("sentry-native 0.7.6") -- matches vcpkg version (2024-06-15) end |