You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nheko/cmake/Hunter/config.cmake

32 lines
676 B

4 years ago
hunter_config(
nlohmann_json
VERSION 3.11.1
4 years ago
CMAKE_ARGS JSON_MultipleHeaders=ON
)
if (WIN32)
hunter_config(
CURL
VERSION 8.4.0-p0
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 8.4.0-p0
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()