mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 10:50:23 +08:00
11 lines
224 B
CMake
11 lines
224 B
CMake
if(WIN32)
|
|
set(CURL_LIBRARIES libcurl libssl libcrypto zlib)
|
|
endif()
|
|
|
|
find_package(CURL REQUIRED)
|
|
|
|
if(ANDROID)
|
|
find_package(OpenSSL REQUIRED)
|
|
set(CURL_LIBRARIES CURL::libcurl OpenSSL::SSL OpenSSL::Crypto)
|
|
endif()
|