-
Notifications
You must be signed in to change notification settings - Fork 126
/
CMakeLists.txt
238 lines (187 loc) · 6.67 KB
/
CMakeLists.txt
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# CMakeLists.txt
#
# Top-level CMake build file for the 'sockpp' library.
#
# ---------------------------------------------------------------------------
# This file is part of the "sockpp" C++ socket library.
#
# Copyright (c) 2017-2018 Frank Pagliughi
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# ---------------------------------------------------------------------------
# --- CMake required version ---
cmake_minimum_required(VERSION 3.12)
# --- Project setup ---
project(sockpp VERSION "2.0.0")
# --- Build Options ---
option(SOCKPP_BUILD_SHARED "Build shared library" ON)
option(SOCKPP_BUILD_STATIC "Build static library" OFF)
option(SOCKPP_BUILD_EXAMPLES "Build example applications" OFF)
option(SOCKPP_BUILD_TESTS "Build unit tests" OFF)
option(SOCKPP_BUILD_DOCUMENTATION "Create Doxygen reference documentation" OFF)
#option(SOCKPP_WITH_OPENSSL "TLS Secure Sockets with OpenSSL" OFF)
#option(SOCKPP_WITH_MBEDTLS "TLS Secure Sockets with Mbed TLS" OFF)
option(SOCKPP_WITH_CAN "Include support for Linux SocketCAN components" OFF)
# ----- Find any dependencies -----
if(SOCKPP_WITH_OPENSSL)
set(SOCKPP_WITH_TLS ON)
find_package(OpenSSL REQUIRED)
elseif(SOCKPP_WITH_MBEDTLS)
set(SOCKPP_WITH_TLS ON)
find_package(MbedTLS REQUIRED)
endif()
# --- Setting naming variables ---
set(SOCKPP_SHARED_LIBRARY sockpp)
set(SOCKPP_STATIC_LIBRARY sockpp-static)
set(SOCKPP_OBJECT_LIBRARY sockpp-objs)
set(SOCKPP_INCLUDE_DIR ${PROJECT_SOURCE_DIR}/include)
set(SOCKPP_GENERATED_DIR ${CMAKE_CURRENT_BINARY_DIR}/generated)
# --- Project uses C++17 ---
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
# --- Generate a version header ---
configure_file(
${PROJECT_SOURCE_DIR}/cmake/version.h.in
${SOCKPP_GENERATED_DIR}/include/sockpp/version.h
@ONLY
)
# --- Common library sources, etc ---
add_subdirectory(src)
# --- System libraries ---
if(WIN32)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
set(LIBS_SYSTEM ws2_32)
endif()
# --- Collect the targets names ---
if(${SOCKPP_BUILD_SHARED})
list(APPEND SOCKPP_TARGETS ${SOCKPP_SHARED_LIBRARY})
endif()
if(${SOCKPP_BUILD_STATIC})
list(APPEND SOCKPP_TARGETS ${SOCKPP_STATIC_LIBRARY})
endif()
# --- Create the libraries and export them ---
if(NOT SOCKPP_TARGETS)
message(FATAL_ERROR "No targets are specified")
endif()
if(${SOCKPP_BUILD_SHARED})
message(STATUS "Creating shared library: ${SOCKPP_SHARED_LIBRARY}")
add_library(${SOCKPP_SHARED_LIBRARY} SHARED $<TARGET_OBJECTS:${SOCKPP_OBJECT_LIBRARY}>)
target_include_directories(${SOCKPP_SHARED_LIBRARY}
PUBLIC
$<BUILD_INTERFACE:${SOCKPP_INCLUDE_DIR}>
$<INSTALL_INTERFACE:include>
PRIVATE
${SOCKPP_GENERATED_DIR}/include
)
target_link_libraries(${SOCKPP_SHARED_LIBRARY} PUBLIC ${LIBS_SYSTEM})
if(SOCKPP_WITH_OPENSSL)
target_link_libraries(${SOCKPP_SHARED_LIBRARY} PUBLIC OpenSSL::SSL OpenSSL::Crypto)
endif()
set_target_properties(${SOCKPP_SHARED_LIBRARY} PROPERTIES
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR}
)
list(APPEND TARGET_FILES ${SOCKPP_SHARED_LIBRARY})
endif()
if(${SOCKPP_BUILD_STATIC})
message(STATUS "Creating static library: ${SOCKPP_STATIC_LIBRARY}")
add_library(${SOCKPP_STATIC_LIBRARY} STATIC $<TARGET_OBJECTS:${SOCKPP_OBJECT_LIBRARY}>)
target_include_directories(${SOCKPP_STATIC_LIBRARY}
PUBLIC
$<BUILD_INTERFACE:${SOCKPP_INCLUDE_DIR}>
$<INSTALL_INTERFACE:include>
PRIVATE
${SOCKPP_GENERATED_DIR}/include
)
target_link_libraries(${SOCKPP_STATIC_LIBRARY} PUBLIC ${LIBS_SYSTEM})
if(SOCKPP_WITH_OPENSSL)
target_link_libraries(${SOCKPP_STATIC_LIBRARY} PUBLIC OpenSSL::SSL OpenSSL::Crypto)
endif()
# On *nix systems, the static library can have the same base filename
# as the shared library, thus 'libsockpp.a' for the static lib.
# On Windows they need different names to tell the static lib from the
# DLL import library.
if(UNIX)
set_target_properties(${SOCKPP_STATIC_LIBRARY} PROPERTIES
OUTPUT_NAME ${SOCKPP_SHARED_LIBRARY}
)
endif()
list(APPEND TARGET_FILES ${SOCKPP_STATIC_LIBRARY})
endif()
# --- Install Targets ---
include(GNUInstallDirs)
install(TARGETS ${TARGET_FILES}
EXPORT sockpp-targets
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
install(EXPORT sockpp-targets
FILE
sockppTargets.cmake
NAMESPACE
Sockpp::
DESTINATION
${CMAKE_INSTALL_LIBDIR}/cmake/sockpp
)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
${SOCKPP_GENERATED_DIR}/cmake/sockppConfigVersion.cmake
VERSION ${PROJECT_VERSION}
COMPATIBILITY AnyNewerVersion
)
install(DIRECTORY include/ ${SOCKPP_GENERATED_DIR}/include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
install(
FILES
${PROJECT_SOURCE_DIR}/cmake/sockppConfig.cmake
${SOCKPP_GENERATED_DIR}/cmake/sockppConfigVersion.cmake
DESTINATION
${CMAKE_INSTALL_LIBDIR}/cmake/sockpp
)
# --- Documentation ---
if(SOCKPP_BUILD_DOCUMENTATION)
add_subdirectory(doc)
endif()
# --- Default library for examples and unit tests ---
if(SOCKPP_BUILD_SHARED)
set(SOCKPP_LIB ${SOCKPP_SHARED_LIBRARY})
else()
set(SOCKPP_LIB ${SOCKPP_STATIC_LIBRARY})
endif()
# --- Example applications ---
if(SOCKPP_BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
# --- Unit Tests ---
if(SOCKPP_BUILD_TESTS)
add_subdirectory(tests/unit)
endif()