diff options
| author | Stefan Boberg <[email protected]> | 2025-10-26 18:24:36 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-10-26 18:24:36 +0100 |
| commit | 4ad9bc792538d3525c93913b580eec5f86e238d7 (patch) | |
| tree | 10218eafc2b8db699738e0a58363bf0111a1b0f7 /src/zenhttp/xmake.lua | |
| parent | also fix up zlib dependencies (diff) | |
| download | zen-4ad9bc792538d3525c93913b580eec5f86e238d7.tar.xz zen-4ad9bc792538d3525c93913b580eec5f86e238d7.zip | |
in-tree: everything else
* curl
* sentry-native
* mbedtls (replaces openssl3 as openssl3 was tricky to cross-build on macos)
Diffstat (limited to 'src/zenhttp/xmake.lua')
| -rw-r--r-- | src/zenhttp/xmake.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/zenhttp/xmake.lua b/src/zenhttp/xmake.lua index 0f757921c..434330501 100644 --- a/src/zenhttp/xmake.lua +++ b/src/zenhttp/xmake.lua @@ -10,9 +10,7 @@ target('zenhttp') add_deps("zencore", "zentelemetry", "transport-sdk", "asio", "cpr") add_deps("gsl-lite") add_packages( - "vcpkg::curl", -- required by cpr - "vcpkg::openssl", -- required by curl - "zlib", -- required by curl + "curl", -- required by cpr "http_parser" ) add_options("httpsys") |