18 lines
581 B
CMake
18 lines
581 B
CMake
|
# - Find curl
|
||
|
# Find the native CURL headers and libraries.
|
||
|
#
|
||
|
# CURL_INCLUDE_DIR - where to find curl/curl.h, etc.
|
||
|
# CURL_LIBRARY - List of libraries when using curl.
|
||
|
# CURL_FOUND - True if curl found.
|
||
|
|
||
|
# Look for the header file.
|
||
|
FIND_PATH(CURL_INCLUDE_DIR NAMES curl/curl.h)
|
||
|
|
||
|
# Look for the library.
|
||
|
FIND_LIBRARY(CURL_LIBRARY NAMES curl)
|
||
|
|
||
|
# handle the QUIETLY and REQUIRED arguments and set CURL_FOUND to TRUE if
|
||
|
# all listed variables are TRUE
|
||
|
INCLUDE(FindPackageHandleStandardArgs)
|
||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(CURL DEFAULT_MSG CURL_LIBRARY CURL_INCLUDE_DIR)
|