diff options
| author | Stefan Boberg <[email protected]> | 2024-12-03 09:41:41 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-12-03 09:41:41 +0100 |
| commit | 8284e470d0c3abd642efbb3eff1f012b4f7282c2 (patch) | |
| tree | 86978ae0d16264d9b7b403ec1b32cb574e82a1f3 /xmake.lua | |
| parent | ODR fix (diff) | |
| download | zen-8284e470d0c3abd642efbb3eff1f012b4f7282c2.tar.xz zen-8284e470d0c3abd642efbb3eff1f012b4f7282c2.zip | |
don't force openssl to version 3.0.8 (#252)
should fix build issues caused by curl pulling in a different version
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -26,9 +26,7 @@ add_requires( set_policy("build.ccache", false) -if is_plat("linux") then - add_requires("vcpkg::openssl 3.0.8") -elseif is_plat("windows") then +if is_plat("windows") then add_defines("ZEN_USE_OPENSSL=0") else add_requires("vcpkg::openssl") |