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