VirtualBox

source: vbox/trunk/src/libs/curl-8.0.1/lib/CMakeLists.txt@ 99874

Last change on this file since 99874 was 99344, checked in by vboxsync, 2 years ago

curl-8.0.1: Applied and adjusted our curl changes to 7.87.0 bugref:10417

  • Property svn:eol-style set to native
File size: 4.6 KB
Line 
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###########################################################################
24set(LIB_NAME libcurl)
25set(LIBCURL_OUTPUT_NAME libcurl CACHE STRING "Basename of the curl library")
26add_definitions(-DBUILDING_LIBCURL)
27
28if(BUILD_SHARED_LIBS)
29 set(CURL_STATICLIB NO)
30else()
31 set(CURL_STATICLIB YES)
32endif()
33
34# Use:
35# * CURL_STATICLIB
36configure_file(curl_config.h.cmake
37 ${CMAKE_CURRENT_BINARY_DIR}/curl_config.h)
38
39transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
40include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake)
41
42list(APPEND HHEADERS
43 ${CMAKE_CURRENT_BINARY_DIR}/curl_config.h
44 )
45
46if(WIN32 AND NOT CURL_STATICLIB)
47 list(APPEND CSOURCES libcurl.rc)
48endif()
49
50# The rest of the build
51
52include_directories(${CMAKE_CURRENT_BINARY_DIR}/../include)
53include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
54include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../include)
55include_directories(${CMAKE_CURRENT_BINARY_DIR}/..)
56include_directories(${CMAKE_CURRENT_SOURCE_DIR})
57include_directories(${CMAKE_CURRENT_BINARY_DIR})
58if(USE_ARES)
59 include_directories(${CARES_INCLUDE_DIR})
60endif()
61
62add_library(
63 ${LIB_NAME}
64 ${HHEADERS} ${CSOURCES}
65 )
66
67add_library(
68 ${PROJECT_NAME}::${LIB_NAME}
69 ALIAS ${LIB_NAME}
70 )
71
72if(NOT BUILD_SHARED_LIBS)
73 set_target_properties(${LIB_NAME} PROPERTIES INTERFACE_COMPILE_DEFINITIONS CURL_STATICLIB)
74endif()
75
76target_link_libraries(${LIB_NAME} PRIVATE ${CURL_LIBS})
77
78transform_makefile_inc("Makefile.soname" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.soname.cmake")
79include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.soname.cmake)
80
81set_target_properties(${LIB_NAME} PROPERTIES
82 COMPILE_DEFINITIONS BUILDING_LIBCURL
83 OUTPUT_NAME ${LIBCURL_OUTPUT_NAME}
84 )
85
86if(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
107endif()
108
109
110if(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})
113endif()
114
115# Remove the "lib" prefix since the library is already named "libcurl".
116set_target_properties(${LIB_NAME} PROPERTIES PREFIX "")
117set_target_properties(${LIB_NAME} PROPERTIES IMPORT_PREFIX "")
118
119if(CURL_HAS_LTO)
120 set_target_properties(${LIB_NAME} PROPERTIES
121 INTERPROCEDURAL_OPTIMIZATION_RELEASE TRUE
122 INTERPROCEDURAL_OPTIMIZATION_RELWITHDEBINFO TRUE)
123endif()
124
125if(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()
133endif()
134
135target_include_directories(${LIB_NAME} INTERFACE
136 $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
137 $<BUILD_INTERFACE:${CURL_SOURCE_DIR}/include>)
138
139if(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 )
151endif()
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette