1 | #***************************************************************************
|
---|
2 | # _ _ ____ _
|
---|
3 | # Project ___| | | | _ \| |
|
---|
4 | # / __| | | | |_) | |
|
---|
5 | # | (__| |_| | _ <| |___
|
---|
6 | # \___|\___/|_| \_\_____|
|
---|
7 | #
|
---|
8 | # Copyright (C) Daniel Stenberg, <[email protected]>, et al.
|
---|
9 | #
|
---|
10 | # This software is licensed as described in the file COPYING, which
|
---|
11 | # you should have received as part of this distribution. The terms
|
---|
12 | # are also available at https://curl.se/docs/copyright.html.
|
---|
13 | #
|
---|
14 | # You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
---|
15 | # copies of the Software, and permit persons to whom the Software is
|
---|
16 | # furnished to do so, under the terms of the COPYING file.
|
---|
17 | #
|
---|
18 | # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
---|
19 | # KIND, either express or implied.
|
---|
20 | #
|
---|
21 | # SPDX-License-Identifier: curl
|
---|
22 | #
|
---|
23 | ###########################################################################
|
---|
24 | set(LIB_NAME libcurl)
|
---|
25 | set(LIBCURL_OUTPUT_NAME libcurl CACHE STRING "Basename of the curl library")
|
---|
26 | add_definitions(-DBUILDING_LIBCURL)
|
---|
27 |
|
---|
28 | if(BUILD_SHARED_LIBS)
|
---|
29 | set(CURL_STATICLIB NO)
|
---|
30 | else()
|
---|
31 | set(CURL_STATICLIB YES)
|
---|
32 | endif()
|
---|
33 |
|
---|
34 | # Use:
|
---|
35 | # * CURL_STATICLIB
|
---|
36 | configure_file(curl_config.h.cmake
|
---|
37 | ${CMAKE_CURRENT_BINARY_DIR}/curl_config.h)
|
---|
38 |
|
---|
39 | transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
---|
40 | include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake)
|
---|
41 |
|
---|
42 | list(APPEND HHEADERS
|
---|
43 | ${CMAKE_CURRENT_BINARY_DIR}/curl_config.h
|
---|
44 | )
|
---|
45 |
|
---|
46 | if(WIN32 AND NOT CURL_STATICLIB)
|
---|
47 | list(APPEND CSOURCES libcurl.rc)
|
---|
48 | endif()
|
---|
49 |
|
---|
50 | # The rest of the build
|
---|
51 |
|
---|
52 | include_directories(${CMAKE_CURRENT_BINARY_DIR}/../include)
|
---|
53 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
---|
54 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../include)
|
---|
55 | include_directories(${CMAKE_CURRENT_BINARY_DIR}/..)
|
---|
56 | include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
---|
57 | include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
---|
58 | if(USE_ARES)
|
---|
59 | include_directories(${CARES_INCLUDE_DIR})
|
---|
60 | endif()
|
---|
61 |
|
---|
62 | add_library(
|
---|
63 | ${LIB_NAME}
|
---|
64 | ${HHEADERS} ${CSOURCES}
|
---|
65 | )
|
---|
66 |
|
---|
67 | add_library(
|
---|
68 | ${PROJECT_NAME}::${LIB_NAME}
|
---|
69 | ALIAS ${LIB_NAME}
|
---|
70 | )
|
---|
71 |
|
---|
72 | if(NOT BUILD_SHARED_LIBS)
|
---|
73 | set_target_properties(${LIB_NAME} PROPERTIES INTERFACE_COMPILE_DEFINITIONS CURL_STATICLIB)
|
---|
74 | endif()
|
---|
75 |
|
---|
76 | target_link_libraries(${LIB_NAME} PRIVATE ${CURL_LIBS})
|
---|
77 |
|
---|
78 | transform_makefile_inc("Makefile.soname" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.soname.cmake")
|
---|
79 | include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.soname.cmake)
|
---|
80 |
|
---|
81 | set_target_properties(${LIB_NAME} PROPERTIES
|
---|
82 | COMPILE_DEFINITIONS BUILDING_LIBCURL
|
---|
83 | OUTPUT_NAME ${LIBCURL_OUTPUT_NAME}
|
---|
84 | )
|
---|
85 |
|
---|
86 | if(CMAKE_SYSTEM_NAME STREQUAL "AIX" OR
|
---|
87 | CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
|
---|
88 | CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR
|
---|
89 | CMAKE_SYSTEM_NAME STREQUAL "GNU/kFreeBSD" OR
|
---|
90 |
|
---|
91 | # FreeBSD comes with the a.out and elf flavours
|
---|
92 | # but a.out was supported up to version 3.x and
|
---|
93 | # elf from 3.x. I cannot imagine someone running
|
---|
94 | # CMake on those ancient systems
|
---|
95 | CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
|
---|
96 |
|
---|
97 | CMAKE_SYSTEM_NAME STREQUAL "Haiku")
|
---|
98 |
|
---|
99 | math(EXPR CMAKESONAME "${VERSIONCHANGE} - ${VERSIONDEL}")
|
---|
100 | set(CMAKEVERSION "${CMAKESONAME}.${VERSIONDEL}.${VERSIONADD}")
|
---|
101 |
|
---|
102 | set_target_properties(${LIB_NAME} PROPERTIES
|
---|
103 | VERSION ${CMAKEVERSION}
|
---|
104 | SOVERSION ${CMAKESONAME}
|
---|
105 | )
|
---|
106 |
|
---|
107 | endif()
|
---|
108 |
|
---|
109 |
|
---|
110 | if(HIDES_CURL_PRIVATE_SYMBOLS)
|
---|
111 | set_property(TARGET ${LIB_NAME} APPEND PROPERTY COMPILE_DEFINITIONS "CURL_HIDDEN_SYMBOLS")
|
---|
112 | set_property(TARGET ${LIB_NAME} APPEND PROPERTY COMPILE_FLAGS ${CURL_CFLAG_SYMBOLS_HIDE})
|
---|
113 | endif()
|
---|
114 |
|
---|
115 | # Remove the "lib" prefix since the library is already named "libcurl".
|
---|
116 | set_target_properties(${LIB_NAME} PROPERTIES PREFIX "")
|
---|
117 | set_target_properties(${LIB_NAME} PROPERTIES IMPORT_PREFIX "")
|
---|
118 |
|
---|
119 | if(CURL_HAS_LTO)
|
---|
120 | set_target_properties(${LIB_NAME} PROPERTIES
|
---|
121 | INTERPROCEDURAL_OPTIMIZATION_RELEASE TRUE
|
---|
122 | INTERPROCEDURAL_OPTIMIZATION_RELWITHDEBINFO TRUE)
|
---|
123 | endif()
|
---|
124 |
|
---|
125 | if(WIN32)
|
---|
126 | if(BUILD_SHARED_LIBS)
|
---|
127 | if(MSVC)
|
---|
128 | # Add "_imp" as a suffix before the extension to avoid conflicting with
|
---|
129 | # the statically linked "libcurl.lib"
|
---|
130 | set_target_properties(${LIB_NAME} PROPERTIES IMPORT_SUFFIX "_imp.lib")
|
---|
131 | endif()
|
---|
132 | endif()
|
---|
133 | endif()
|
---|
134 |
|
---|
135 | target_include_directories(${LIB_NAME} INTERFACE
|
---|
136 | $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
---|
137 | $<BUILD_INTERFACE:${CURL_SOURCE_DIR}/include>)
|
---|
138 |
|
---|
139 | if(CURL_ENABLE_EXPORT_TARGET)
|
---|
140 | install(TARGETS ${LIB_NAME}
|
---|
141 | EXPORT ${TARGETS_EXPORT_NAME}
|
---|
142 | ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
---|
143 | LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
---|
144 | RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
---|
145 | )
|
---|
146 |
|
---|
147 | export(TARGETS ${LIB_NAME}
|
---|
148 | FILE ${PROJECT_BINARY_DIR}/libcurl-target.cmake
|
---|
149 | NAMESPACE ${PROJECT_NAME}::
|
---|
150 | )
|
---|
151 | endif()
|
---|