-
Notifications
You must be signed in to change notification settings - Fork 69
/
CMakeLists.txt
352 lines (316 loc) · 10.7 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
cmake_minimum_required (VERSION 3.16)
project (liblsl
VERSION 1.16.2
LANGUAGES C CXX
DESCRIPTION "Labstreaminglayer C/C++ library"
HOMEPAGE_URL "https://github.com/sccn/liblsl"
)
# API version, to be incremented on backwards-incompatible ABI changes
set(LSL_ABI_VERSION 2)
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
set(CMAKE_VISIBILITY_INLINES_HIDDEN ON)
set(CMAKE_CXX_STANDARD 17)
# generate a compilation database (compile_commands.json) for clang tooling
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
option(LSL_DEBUGLOG "Enable (lots of) additional debug messages" OFF)
option(LSL_UNIXFOLDERS "Use the unix folder layout for install targets" On)
option(LSL_FORCE_FANCY_LIBNAME "Add library name decorations (32/64/-debug)" OFF)
option(LSL_BUILD_EXAMPLES "Build example programs in examples/" OFF)
option(LSL_BUILD_STATIC "Build LSL as static library." OFF)
option(LSL_LEGACY_CPP_ABI "Build legacy C++ ABI into lsl-static" OFF)
option(LSL_OPTIMIZATIONS "Enable some more compiler optimizations" ON)
option(LSL_UNITTESTS "Build LSL library unit tests" OFF)
option(LSL_BUNDLED_BOOST "Use the bundled Boost by default" ON)
option(LSL_BUNDLED_PUGIXML "Use the bundled pugixml by default" ON)
option(LSL_TOOLS "Build some experimental tools for in-depth tests" OFF)
mark_as_advanced(LSL_FORCE_FANCY_LIBNAME)
set(LSL_WINVER "0x0601" CACHE STRING
"Windows version (_WIN32_WINNT) to target (defaults to 0x0601 for Windows 7)")
if(LSL_BUILD_STATIC)
set(LSL_LIB_TYPE STATIC)
else()
set(LSL_LIB_TYPE SHARED)
# shared libraries require relocatable symbols so we enable them by default
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
endif()
# Add an object library so all files are only compiled once
add_library(lslobj OBJECT
src/api_config.cpp
src/api_config.h
src/api_types.hpp
src/cancellable_streambuf.h
src/cancellation.h
src/cancellation.cpp
src/common.cpp
src/common.h
src/consumer_queue.cpp
src/consumer_queue.h
src/data_receiver.cpp
src/data_receiver.h
src/forward.h
src/info_receiver.cpp
src/info_receiver.h
src/inlet_connection.cpp
src/inlet_connection.h
src/lsl_resolver_c.cpp
src/lsl_inlet_c.cpp
src/lsl_outlet_c.cpp
src/lsl_streaminfo_c.cpp
src/lsl_xml_element_c.cpp
src/netinterfaces.h
src/netinterfaces.cpp
src/portable_archive/portable_archive_exception.hpp
src/portable_archive/portable_archive_includes.hpp
src/portable_archive/portable_iarchive.hpp
src/portable_archive/portable_oarchive.hpp
src/resolver_impl.cpp
src/resolver_impl.h
src/resolve_attempt_udp.cpp
src/resolve_attempt_udp.h
src/sample.cpp
src/sample.h
src/send_buffer.cpp
src/send_buffer.h
src/socket_utils.cpp
src/socket_utils.h
src/stream_info_impl.cpp
src/stream_info_impl.h
src/stream_inlet_impl.h
src/stream_outlet_impl.cpp
src/stream_outlet_impl.h
src/tcp_server.cpp
src/tcp_server.h
src/time_postprocessor.cpp
src/time_postprocessor.h
src/time_receiver.cpp
src/time_receiver.h
src/udp_server.cpp
src/udp_server.h
src/util/cast.hpp
src/util/cast.cpp
src/util/endian.cpp
src/util/endian.hpp
src/util/inireader.hpp
src/util/inireader.cpp
src/util/strfuns.hpp
src/util/strfuns.cpp
src/util/uuid.hpp
thirdparty/loguru/loguru.cpp
$<$<BOOL:${LSL_LEGACY_CPP_ABI}>:src/legacy/legacy_abi.cpp src/legacy/legacy_abi.h>
# headers
include/lsl_c.h
include/lsl_cpp.h
include/lsl/common.h
include/lsl/inlet.h
include/lsl/outlet.h
include/lsl/resolver.h
include/lsl/streaminfo.h
include/lsl/types.h
include/lsl/xml.h
)
if(LSL_BUNDLED_PUGIXML)
message(STATUS "Using bundled pugixml")
target_sources(lslobj PRIVATE thirdparty/pugixml/pugixml.cpp)
target_include_directories(lslobj SYSTEM PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/pugixml>)
else()
message(STATUS "Using system pugixml")
find_package(pugixml REQUIRED)
if(NOT TARGET pugixml::pugixml)
add_library(pugixml::pugixml ALIAS pugixml)
endif()
target_link_libraries(lslobj PUBLIC pugixml::pugixml)
endif()
# try to find out which revision is currently checked out
find_package(Git)
if(lslgitrevision AND lslgitbranch)
message(STATUS "Got git information ${lslgitrevision}/${lslgitbranch} from the command line")
elseif(GIT_FOUND)
execute_process(
COMMAND ${GIT_EXECUTABLE} describe --tags HEAD
WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}"
OUTPUT_VARIABLE lslgitrevision
OUTPUT_STRIP_TRAILING_WHITESPACE
)
execute_process(
COMMAND ${GIT_EXECUTABLE} rev-parse --symbolic-full-name --abbrev-ref @
WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}"
OUTPUT_VARIABLE lslgitbranch
OUTPUT_STRIP_TRAILING_WHITESPACE
)
message(STATUS "Git version information: ${lslgitbranch}/${lslgitrevision}")
else()
set(lslgitrevision "unknown")
set(lslgitbranch "unknown")
endif()
# generate a version information string that can be retrieved with the exported
# lsl_library_info() function
set(LSL_VERSION_INFO "git:${lslgitrevision}/branch:${lslgitbranch}/build:${CMAKE_BUILD_TYPE}/compiler:${CMAKE_CXX_COMPILER_ID}-${CMAKE_CXX_COMPILER_VERSION}")
set_source_files_properties("src/buildinfo.cpp"
PROPERTIES COMPILE_DEFINITIONS
LSL_LIBRARY_INFO_STR="${LSL_VERSION_INFO}/link:${LSL_LIB_TYPE}"
)
set_source_files_properties("thirdparty/loguru/loguru.cpp"
PROPERTIES COMPILE_DEFINITIONS LOGURU_STACKTRACES=$<BOOL:${LSL_DEBUGLOG}>)
find_package(Threads REQUIRED)
# create the lslboost target
add_library(lslboost INTERFACE)
if(LSL_BUNDLED_BOOST)
message(STATUS "Using bundled Boost")
target_include_directories(lslboost SYSTEM INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/lslboost>)
else()
message(STATUS "Using system Boost")
find_package(Boost REQUIRED)
target_compile_definitions(lslboost
INTERFACE
lslboost=boost # allows the LSL code base to work with the original Boost namespace/headers
)
target_link_libraries(lslboost INTERFACE Boost::boost Boost::disable_autolinking)
endif()
target_compile_definitions(lslboost INTERFACE BOOST_ALL_NO_LIB)
# target configuration for the internal lslobj target
target_link_libraries(lslobj PRIVATE lslboost Threads::Threads)
target_compile_features(lslobj PUBLIC cxx_std_17)
target_include_directories(lslobj
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
$<INSTALL_INTERFACE:include>
INTERFACE # for unit tests
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/src>
)
target_include_directories(lslobj
SYSTEM PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/thirdparty/loguru>
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/thirdparty/asio>
)
target_compile_definitions(lslobj PRIVATE
LIBLSL_EXPORTS
LOGURU_DEBUG_LOGGING=$<BOOL:${LSL_DEBUGLOG}>
PUBLIC ASIO_NO_DEPRECATED
)
if(MINGW)
target_link_libraries(lslobj PRIVATE bcrypt)
endif()
# platform specific configuration
if(UNIX AND NOT APPLE)
include(CheckSymbolExists)
# check that clock_gettime is present in the stdlib, link against librt otherwise
check_symbol_exists(clock_gettime time.h HAS_GETTIME)
if(NOT HAS_GETTIME)
target_link_libraries(lslobj PRIVATE rt)
endif()
if(LSL_DEBUGLOG)
target_link_libraries(lslobj PRIVATE dl)
endif()
elseif(WIN32)
target_link_libraries(lslobj PRIVATE iphlpapi winmm mswsock ws2_32)
target_compile_definitions(lslobj
PRIVATE _CRT_SECURE_NO_WARNINGS
PUBLIC LSLNOAUTOLINK # don't use #pragma(lib) in CMake builds
_WIN32_WINNT=${LSL_WINVER}
)
endif()
# the "real" liblsl library. It contains one source with the version info
# string because some generators require it. The remaining source code is
# built in the lslobj target and later linked into this library
add_library(lsl ${LSL_LIB_TYPE} src/buildinfo.cpp)
# defines for LSL_CPP_API export header (shared: dllimport/dllexport)
target_compile_definitions(lsl PUBLIC
$<IF:$<BOOL:${LSL_BUILD_STATIC}>,LIBLSL_STATIC,LIBLSL_EXPORTS>
$<$<CXX_COMPILER_ID:MSVC>:LSLNOAUTOLINK> # don't use #pragma(lib) in CMake builds
)
target_link_libraries(lsl PRIVATE lslobj lslboost)
target_include_directories(lsl INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
set_target_properties(lsl PROPERTIES
VERSION ${liblsl_VERSION_MAJOR}.${liblsl_VERSION_MINOR}.${liblsl_VERSION_PATCH}
SOVERSION ${LSL_ABI_VERSION}
)
# enable some additional expensive compiler optimizations
if(LSL_OPTIMIZATIONS)
# enable LTO (https://en.wikipedia.org/wiki/Interprocedural_optimization
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
else()
# build one object file for Asio instead of once every time an Asio function is called. See
# https://think-async.com/Asio/asio-1.18.2/doc/asio/using.html#asio.using.optional_separate_compilation
target_sources(lslobj PRIVATE thirdparty/asio_objects.cpp)
target_compile_definitions(lslobj PUBLIC ASIO_SEPARATE_COMPILATION ASIO_DISABLE_VISIBILITY)
endif()
if(LSL_FORCE_FANCY_LIBNAME)
math(EXPR lslplatform "8 * ${CMAKE_SIZEOF_VOID_P}")
set_target_properties(lsl PROPERTIES
PREFIX ""
OUTPUT_NAME "liblsl${lslplatform}"
DEBUG_POSTFIX "-debug"
)
endif()
if(LSL_UNIXFOLDERS)
include(GNUInstallDirs)
else()
set(CMAKE_INSTALL_BINDIR LSL)
set(CMAKE_INSTALL_LIBDIR LSL)
set(CMAKE_INSTALL_INCLUDEDIR LSL/include)
endif()
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/LSLConfigVersion.cmake"
VERSION "${liblsl_VERSION_MAJOR}.${liblsl_VERSION_MINOR}.${liblsl_VERSION_PATCH}"
COMPATIBILITY AnyNewerVersion
)
set(LSLTargets lsl)
if(LSL_BUILD_STATIC)
list(APPEND LSLTargets lslobj lslboost)
endif()
install(TARGETS ${LSLTargets}
EXPORT LSLTargets
COMPONENT liblsl
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
export(EXPORT LSLTargets
FILE "${CMAKE_CURRENT_BINARY_DIR}/LSLTargets.cmake"
NAMESPACE LSL::
)
install(EXPORT LSLTargets
FILE LSLTargets.cmake
COMPONENT liblsl
NAMESPACE "LSL::"
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/LSL
)
configure_file(cmake/LSLConfig.cmake "${CMAKE_CURRENT_BINARY_DIR}/LSLConfig.cmake" COPYONLY)
configure_file(cmake/LSLCMake.cmake "${CMAKE_CURRENT_BINARY_DIR}/LSLCMake.cmake" COPYONLY)
# install headers
install(DIRECTORY include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
COMPONENT liblsl
)
install(FILES
cmake/LSLCMake.cmake
${CMAKE_CURRENT_BINARY_DIR}/LSLConfig.cmake
${CMAKE_CURRENT_BINARY_DIR}/LSLConfigVersion.cmake
COMPONENT liblsl
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/LSL
)
include(cmake/LSLCMake.cmake)
add_executable(lslver testing/lslver.c)
target_link_libraries(lslver PRIVATE lsl)
installLSLApp(lslver)
if(NOT WIN32 AND LSL_TOOLS)
add_executable(blackhole testing/blackhole.cpp)
target_link_libraries(blackhole PRIVATE Threads::Threads)
target_include_directories(blackhole PRIVATE "thirdparty/asio/")
installLSLApp(blackhole)
endif()
set(LSL_INSTALL_ROOT ${CMAKE_CURRENT_BINARY_DIR})
if(LSL_UNITTESTS)
add_subdirectory(testing)
endif()
if(LSL_BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
LSLGenerateCPackConfig()