mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 10:20:49 +08:00
9 lines
177 B
CMake
9 lines
177 B
CMake
if(ANDROID)
|
|
set(CURL_LIBRARIES -lcurl -lssl -lcrypto -lz)
|
|
endif()
|
|
if(WIN32 OR ANDROID)
|
|
find_package(CURL CONFIG REQUIRED)
|
|
else()
|
|
find_package(CURL REQUIRED)
|
|
endif()
|