-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFindCurl.cmake
83 lines (73 loc) · 2.51 KB
/
FindCurl.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#.rst:
# FindCurl
# --------
# Finds the Curl library
#
# This will will define the following variables::
#
# CURL_FOUND - system has Curl
# CURL_INCLUDE_DIRS - the Curl include directory
# CURL_LIBRARIES - the Curl libraries
# CURL_DEFINITIONS - the Curl definitions
#
# and the following imported targets::
#
# Curl::Curl - The Curl library
if(PKG_CONFIG_FOUND)
pkg_check_modules(PC_CURL libcurl QUIET)
endif()
find_path(CURL_INCLUDE_DIR NAMES curl/curl.h
PATHS ${PC_CURL_INCLUDEDIR})
find_library(CURL_LIBRARY NAMES curl libcurl
PATHS ${PC_CURL_LIBDIR})
set(CURL_VERSION ${PC_CURL_VERSION})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Curl
REQUIRED_VARS CURL_LIBRARY CURL_INCLUDE_DIR
VERSION_VAR CURL_VERSION)
if(CURL_FOUND)
set(CURL_INCLUDE_DIRS ${CURL_INCLUDE_DIR})
set(CURL_LIBRARIES ${CURL_LIBRARY})
# Check whether OpenSSL inside libcurl is static.
if(UNIX)
if(NOT DEFINED HAS_CURL_STATIC)
get_filename_component(CURL_LIBRARY_DIR ${CURL_LIBRARY} DIRECTORY)
find_soname(CURL REQUIRED)
if(APPLE)
set(libchecker nm)
set(searchpattern "T [_]?CRYPTO_set_locking_call")
else()
set(libchecker readelf -s)
set(searchpattern "CRYPTO_set_locking_call")
endif()
execute_process(
COMMAND ${libchecker} ${CURL_LIBRARY_DIR}/${CURL_SONAME}
COMMAND grep -Eq ${searchpattern}
RESULT_VARIABLE HAS_CURL_STATIC)
unset(libchecker)
unset(searchpattern)
if(HAS_CURL_STATIC EQUAL 0)
set(HAS_CURL_STATIC TRUE)
else()
set(HAS_CURL_STATIC FALSE)
endif()
set(HAS_CURL_STATIC ${HAS_CURL_STATIC} CACHE INTERNAL
"OpenSSL is statically linked into Curl")
message(STATUS "OpenSSL is statically linked into Curl: ${HAS_CURL_STATIC}")
endif()
endif()
if(HAS_CURL_STATIC)
set(CURL_DEFINITIONS -DHAS_CURL_STATIC=1)
endif()
if(NOT TARGET Curl::Curl)
add_library(Curl::Curl UNKNOWN IMPORTED)
set_target_properties(Curl::Curl PROPERTIES
IMPORTED_LOCATION "${CURL_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${CURL_INCLUDE_DIR}")
if(HAS_CURL_STATIC)
set_target_properties(Curl::Curl PROPERTIES
INTERFACE_COMPILE_DEFINITIONS HAS_CURL_STATIC=1)
endif()
endif()
endif()
mark_as_advanced(CURL_INCLUDE_DIR CURL_LIBRARY)