aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-11-02 16:02:25 +0100
committerMartin Ridgers <[email protected]>2021-11-11 14:52:14 +0100
commitbf9cbecc1e7066c5a0544a6f029338c4f0fd19a6 (patch)
tree5bda95f4de1c6d5dcc97cab0e94f7ac52392227d
parentWindows compile fix (diff)
downloadzen-bf9cbecc1e7066c5a0544a6f029338c4f0fd19a6.tar.xz
zen-bf9cbecc1e7066c5a0544a6f029338c4f0fd19a6.zip
Added Curl's vcpkg:openssl dependency to xmake scripts
-rw-r--r--xmake.lua1
-rw-r--r--zencore/xmake.lua1
2 files changed, 2 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index 65ad98797..da688cbb3 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -11,6 +11,7 @@ add_requires(
"vcpkg::lua",
"vcpkg::lz4",
"vcpkg::mimalloc",
+ "vcpkg::openssl",
"vcpkg::robin-map",
"vcpkg::sentry-native",
"vcpkg::sol2",
diff --git a/zencore/xmake.lua b/zencore/xmake.lua
index 313e41c74..d53a2758a 100644
--- a/zencore/xmake.lua
+++ b/zencore/xmake.lua
@@ -23,5 +23,6 @@ target('zencore')
"vcpkg::cpr",
"vcpkg::curl", -- required by cpr
"vcpkg::zlib", -- required by curl
+ "vcpkg::openssl", -- required by curl
"vcpkg::xxhash",
"vcpkg::gsl-lite")