mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Get SChannel CURL backend working for coeurl on Windows
This commit is contained in:
parent
82088fa0d7
commit
4ff0775a22
2 changed files with 48 additions and 4 deletions
|
@ -20,6 +20,7 @@ include("cmake/HunterGate.cmake")
|
||||||
HunterGate(
|
HunterGate(
|
||||||
URL "https://github.com/cpp-pm/hunter/archive/v0.23.305.tar.gz"
|
URL "https://github.com/cpp-pm/hunter/archive/v0.23.305.tar.gz"
|
||||||
SHA1 "fc8d7a6dac2fa23681847b3872d88d3839b657b0"
|
SHA1 "fc8d7a6dac2fa23681847b3872d88d3839b657b0"
|
||||||
|
LOCAL
|
||||||
)
|
)
|
||||||
|
|
||||||
option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED})
|
option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED})
|
||||||
|
@ -673,7 +674,7 @@ if(USE_BUNDLED_COEURL)
|
||||||
FetchContent_Declare(
|
FetchContent_Declare(
|
||||||
coeurl
|
coeurl
|
||||||
GIT_REPOSITORY https://nheko.im/Nheko-Reborn/coeurl.git
|
GIT_REPOSITORY https://nheko.im/Nheko-Reborn/coeurl.git
|
||||||
GIT_TAG 417821a07cfe4429b08a2efed5e480a498087afd
|
GIT_TAG e9010d1ce14e7163d1cb5407ed27b23303781796
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(coeurl)
|
FetchContent_MakeAvailable(coeurl)
|
||||||
target_link_libraries(nheko PUBLIC coeurl::coeurl)
|
target_link_libraries(nheko PUBLIC coeurl::coeurl)
|
||||||
|
|
|
@ -1,9 +1,52 @@
|
||||||
|
|
||||||
hunter_config(
|
hunter_config(
|
||||||
Boost
|
spdlog
|
||||||
VERSION "1.70.0-p1"
|
VERSION 1.8.0-p1
|
||||||
CMAKE_ARGS IOSTREAMS_NO_BZIP2=1
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
hunter_config(
|
||||||
|
lmdb
|
||||||
|
VERSION 0.9.21-p2
|
||||||
|
)
|
||||||
|
|
||||||
|
hunter_config(
|
||||||
|
OpenSSL
|
||||||
|
VERSION 1.1.1j
|
||||||
|
)
|
||||||
|
|
||||||
|
hunter_config(
|
||||||
|
Libevent
|
||||||
|
VERSION 2.1.8-p4
|
||||||
|
)
|
||||||
|
|
||||||
hunter_config(
|
hunter_config(
|
||||||
nlohmann_json
|
nlohmann_json
|
||||||
|
VERSION 3.8.0
|
||||||
CMAKE_ARGS JSON_MultipleHeaders=ON
|
CMAKE_ARGS JSON_MultipleHeaders=ON
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (WIN32)
|
||||||
|
hunter_config(
|
||||||
|
CURL
|
||||||
|
VERSION 7.74.0-p2
|
||||||
|
CMAKE_ARGS
|
||||||
|
CMAKE_USE_SCHANNEL=ON
|
||||||
|
BUILD_CURL_TESTS=OFF
|
||||||
|
BUILD_CURL_EXE=OFF
|
||||||
|
CMAKE_USE_OPENSSL=OFF
|
||||||
|
CMAKE_USE_LIBSSH2=OFF
|
||||||
|
BUILD_TESTING=OFF
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
hunter_config(
|
||||||
|
CURL
|
||||||
|
VERSION 7.74.0-p2
|
||||||
|
CMAKE_ARGS
|
||||||
|
CMAKE_USE_SCHANNEL=OFF
|
||||||
|
BUILD_CURL_TESTS=OFF
|
||||||
|
BUILD_CURL_EXE=OFF
|
||||||
|
CMAKE_USE_OPENSSL=ON
|
||||||
|
CMAKE_USE_LIBSSH2=OFF
|
||||||
|
BUILD_TESTING=OFF
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue