-
-
Notifications
You must be signed in to change notification settings - Fork 618
/
CMakeLists.txt
342 lines (263 loc) · 10.3 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
cmake_minimum_required(VERSION 3.10.2)
PROJECT(plotjuggler LANGUAGES C CXX VERSION 3.9.2)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/cmake")
add_definitions(
-DPJ_MAJOR_VERSION=${PROJECT_VERSION_MAJOR}
-DPJ_MINOR_VERSION=${PROJECT_VERSION_MINOR}
-DPJ_PATCH_VERSION=${PROJECT_VERSION_PATCH} )
# You can add some command line arguments at compilation time
# Use _0x3b_ instead of semicolon
#set(PJ_DEFAULT_ARGS "-n --enabled_plugins=libDataLoadCSV_0x3b_libDataStreamSample")
#add_definitions( -DPJ_DEFAULT_ARGS="${PJ_DEFAULT_ARGS}")
option(ENABLE_ASAN "Enable Address Sanitizer" OFF)
option(BASE_AS_SHARED "Build the base library as a shared libary" OFF)
option(BUILDING_WITH_CONAN "Using Conan for depenencies" OFF)
IF (NOT WIN32 AND ENABLE_ASAN)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-omit-frame-pointer -fsanitize=address")
set (CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} -fno-omit-frame-pointer -fsanitize=address")
endif()
include_directories( plotjuggler_base/include )
include_directories( plotjuggler_base/src )
add_definitions( -DFMT_HEADER_ONLY )
if(VCPKG_TOOLCHAIN)
set(BUILDING_WITH_VCPKG ON)
message(STATUS "BUILDING_WITH_VCPKG")
endif()
find_package(ament_cmake QUIET)
find_package(catkin QUIET)
# http://answers.ros.org/question/230877/optionally-build-a-package-with-catkin/
if(catkin_FOUND)
set(COMPILING_WITH_CATKIN 1)
message(STATUS "--------------------------------------------------")
message(STATUS "PlotJuggler is being built using CATKIN.")
message(STATUS "--------------------------------------------------")
find_package(catkin REQUIRED COMPONENTS roslib roscpp)
catkin_package(
INCLUDE_DIRS plotjuggler_base/include
LIBRARIES plotjuggler_base
CATKIN_DEPENDS roslib roscpp
)
message(STATUS ${catkin_INCLUDE_DIRS})
include_directories(${catkin_INCLUDE_DIRS})
add_definitions(-DCOMPILED_WITH_CATKIN)
elseif(ament_cmake_FOUND)
set(COMPILING_WITH_AMENT 1)
find_package(ament_cmake REQUIRED)
find_package(ament_index_cpp REQUIRED)
find_package(rclcpp REQUIRED)
include_directories(${ament_index_cpp_INCLUDE_DIRS})
message(STATUS "--------------------------------------------------")
message(STATUS "PlotJuggler is being built using AMENT.")
message(STATUS "--------------------------------------------------")
add_definitions(-DCOMPILED_WITH_AMENT)
else()
message(STATUS "--------------------------------------------------")
message(STATUS "PlotJuggler is being built WITHOUT any ROS support")
message(STATUS "--------------------------------------------------")
endif()
cmake_policy (SET CMP0020 NEW)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
SET(CMAKE_AUTOUIC ON)
if (NOT WIN32)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-omit-frame-pointer")
endif()
if(APPLE AND EXISTS /usr/local/opt/qt5)
# Homebrew installs Qt5 (up to at least 5.9.1) in
# /usr/local/qt5, ensure it can be found by CMake since
# it is not in the default /usr/local prefix.
# source: https://github.com/Homebrew/homebrew-core/issues/8392#issuecomment-325226494
list(APPEND CMAKE_PREFIX_PATH "/usr/local/opt/qt5")
set(CMAKE_MACOSX_RPATH 1)
elseif(APPLE AND EXISTS /opt/homebrew/opt/qt@5)
list(APPEND CMAKE_PREFIX_PATH "/opt/homebrew/opt/qt@5")
set(CMAKE_MACOSX_RPATH 1)
endif()
find_package(Qt5 REQUIRED COMPONENTS
Core
Widgets
PrintSupport
Concurrent
Xml
Svg
OpenGL
WebSockets
Network)
set( QT_LINK_LIBRARIES
Qt5::Core
Qt5::Widgets
Qt5::PrintSupport
Qt5::Xml
Qt5::Concurrent
Qt5::Svg
Qt5::OpenGL
Qt5::WebSockets
)
if (NOT CMAKE_BUILD_TYPE)
message(STATUS "No build type selected, default to RelWithDebInfo")
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
endif()
IF (NOT WIN32)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_USE_MATH_DEFINES")
set(CMAKE_WIN32_EXECUTABLE ON)
set(GUI_TYPE WIN32)
ENDIF()
include_directories(
${Qt5Core_INCLUDE_DIRS}
${Qt5Widgets_INCLUDE_DIRS}
${Qt5Concurrent_INCLUDE_DIRS}
${Qt5PrintSupport_INCLUDE_DIRS}
${Qt5Xml_INCLUDE_DIRS}
${Qt5WebSockets_INCLUDE_DIRS}
${Qt5Svg_INCLUDE_DIRS}
${Qt5OpenGL_INCLUDE_DIRS}
./3rdparty/
./3rdparty/color_widgets/include
./3rdparty/Qt-Advanced-Docking/include
./3rdparty/qwt/src
./3rdparty/sol
./3rdparty/lua-5.4.3/src
./3rdparty/QCodeEditor/include
./3rdparty/lz4-1.9.4
./3rdparty/zstd-1.5.5
)
######################### BASE library ####################################
set(PLOTJUGGLER_BASE_SRC
plotjuggler_base/src/plotdata.cpp
plotjuggler_base/src/datastreamer_base.cpp
plotjuggler_base/src/transform_function.cpp
plotjuggler_base/src/plotwidget_base.cpp
plotjuggler_base/src/plotzoomer.cpp
plotjuggler_base/src/plotmagnifier.cpp
plotjuggler_base/src/plotlegend.cpp
plotjuggler_base/src/plotpanner.cpp
plotjuggler_base/src/timeseries_qwt.cpp
plotjuggler_base/src/reactive_function.cpp
)
qt5_wrap_cpp(PLOTJUGGLER_BASE_MOCS
plotjuggler_base/include/PlotJuggler/dataloader_base.h
plotjuggler_base/include/PlotJuggler/statepublisher_base.h
plotjuggler_base/include/PlotJuggler/toolbox_base.h
plotjuggler_base/include/PlotJuggler/datastreamer_base.h
plotjuggler_base/include/PlotJuggler/transform_function.h
plotjuggler_base/include/PlotJuggler/plotwidget_base.h
)
if (BASE_AS_SHARED)
add_library(plotjuggler_base SHARED
${PLOTJUGGLER_BASE_SRC}
${PLOTJUGGLER_BASE_MOCS}
)
target_link_libraries(plotjuggler_base PRIVATE lua_objects plotjuggler_qwt_objects)
else()
add_library(plotjuggler_base STATIC
${PLOTJUGGLER_BASE_SRC}
${PLOTJUGGLER_BASE_MOCS}
)
endif()
# target_link_libraries(plotjuggler_base plotjuggler_qwt)
target_include_directories(plotjuggler_base INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include>
)
######################### INSTALL ####################################
if(COMPILING_WITH_CATKIN)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_LIB_DESTINATION})
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_BIN_DESTINATION})
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_BIN_DESTINATION})
set(PJ_PLUGIN_INSTALL_DIRECTORY ${CATKIN_PACKAGE_BIN_DESTINATION} )
elseif(COMPILING_WITH_AMENT)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(PJ_PLUGIN_INSTALL_DIRECTORY lib/${PROJECT_NAME} )
ament_export_targets(
${PROJECT_NAME}Targets
export_plotjuggler_qwt
HAS_LIBRARY_TARGET)
ament_package()
else()
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(PJ_PLUGIN_INSTALL_DIRECTORY bin)
endif()
set(DESKTOP_ICON_DIR "${CMAKE_INSTALL_PREFIX}/share/icons")
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/PlotJuggler.desktop
DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications" )
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/plotjuggler.svg
DESTINATION ${DESKTOP_ICON_DIR} )
######################## Main App, Libraries and Plugins ###################################
add_subdirectory( 3rdparty/qwt/src )
add_subdirectory( 3rdparty/lz4-1.9.4 )
add_subdirectory( 3rdparty/zstd-1.5.5 )
add_subdirectory( 3rdparty/QCodeEditor )
add_subdirectory( 3rdparty/color_widgets )
add_subdirectory( 3rdparty/Qt-Advanced-Docking )
add_subdirectory( 3rdparty/lua-5.4.3 )
if (NOT WIN32)
add_subdirectory( 3rdparty/backward-cpp )
endif()
add_subdirectory( plotjuggler_app )
add_subdirectory( plotjuggler_plugins/DataLoadCSV )
add_subdirectory( plotjuggler_plugins/DataLoadMCAP )
add_subdirectory( plotjuggler_plugins/DataLoadParquet )
add_subdirectory( plotjuggler_plugins/DataLoadULog )
add_subdirectory( plotjuggler_plugins/DataStreamSample )
add_subdirectory( plotjuggler_plugins/DataStreamWebsocket )
add_subdirectory( plotjuggler_plugins/DataStreamUDP )
add_subdirectory( plotjuggler_plugins/DataStreamMQTT )
add_subdirectory( plotjuggler_plugins/DataStreamZMQ )
add_subdirectory( plotjuggler_plugins/StatePublisherCSV )
add_subdirectory( plotjuggler_plugins/VideoViewer )
add_subdirectory( plotjuggler_plugins/ToolboxQuaternion )
add_subdirectory( plotjuggler_plugins/ToolboxFFT )
add_subdirectory( plotjuggler_plugins/ToolboxLuaEditor )
add_subdirectory( plotjuggler_plugins/ParserProtobuf )
add_subdirectory( plotjuggler_plugins/ParserROS )
add_subdirectory( plotjuggler_plugins/ParserDataTamer )
add_subdirectory( plotjuggler_plugins/ParserLineInflux )
add_subdirectory( plotjuggler_plugins/PluginsZcm )
# Install targets
install(
TARGETS
plotjuggler_base
EXPORT ${PROJECT_NAME}Targets
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
INCLUDES DESTINATION include)
install(DIRECTORY plotjuggler_base/include/ DESTINATION include )
export(PACKAGE ${PROJECT_NAME})
if(NOT COMPILING_WITH_AMENT AND NOT COMPILING_WITH_CATKIN)
include(GNUInstallDirs)
set(PJ_CMAKECONFIG_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME})
install(
EXPORT ${PROJECT_NAME}Targets
FILE ${PROJECT_NAME}Targets.cmake
DESTINATION ${PJ_CMAKECONFIG_INSTALL_DIR}
)
include(CMakePackageConfigHelpers)
set(PJ_INCLUDE_INSTALL_DIR include)
configure_package_config_file(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
INSTALL_DESTINATION ${PJ_CMAKECONFIG_INSTALL_DIR}
PATH_VARS PJ_INCLUDE_INSTALL_DIR
)
# This requires to declare the project version in the project() macro
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMajorVersion
)
message (STATUS "CMAKE_CURRENT_BINARY_DIR = ${CMAKE_CURRENT_BINARY_DIR}")
install(
FILES
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
DESTINATION ${PJ_CMAKECONFIG_INSTALL_DIR}
)
endif()