]> sigrok.org Git - pulseview.git/blame - CMakeLists.txt
CMakeLists.txt: adjust cmake build rules for Qt6 support
[pulseview.git] / CMakeLists.txt
CommitLineData
0aad432c 1##
190fc91a 2## This file is part of the PulseView project.
68c4a3b3
JH
3##
4## Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
3933e8a9 5## Copyright (C) 2012-2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
c3660d7d 6## Copyright (C) 2020 Soeren Apel <soeren@apelpie.net>
68c4a3b3
JH
7##
8## This program is free software: you can redistribute it and/or modify
9## it under the terms of the GNU General Public License as published by
10## the Free Software Foundation, either version 2 of the License, or
11## (at your option) any later version.
12##
13## This program is distributed in the hope that it will be useful,
14## but WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16## GNU General Public License for more details.
17##
18## You should have received a copy of the GNU General Public License
19## along with this program. If not, see <http://www.gnu.org/licenses/>.
20##
21
e222f01e 22cmake_minimum_required(VERSION 2.8.12)
0cf9fb24 23
d1125d7d 24project(pulseview C CXX)
df944399 25
d1125d7d 26include(GNUInstallDirs)
df944399 27
1c4ec8d0
UH
28# Let AUTOMOC and AUTOUIC process GENERATED files.
29if(POLICY CMP0071)
30 cmake_policy(SET CMP0071 NEW)
31endif()
32
2944860f
UH
33# Only interpret if() arguments as variables or keywords when unquoted.
34if(POLICY CMP0054)
35 cmake_policy(SET CMP0054 NEW)
36endif()
37
cf2b5b64
UH
38list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
39
30588653 40#===============================================================================
506523c1
JH
41#= User Options
42#-------------------------------------------------------------------------------
43
5c3c8c1e 44option(DISABLE_WERROR "Build without -Werror" TRUE)
140181a4 45option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
c1a688de 46option(ENABLE_STACKTRACE "Enable stack trace when crashing" FALSE)
19f511a4 47option(ENABLE_DECODE "Build with libsigrokdecode" TRUE)
f058e273 48option(ENABLE_FLOW "Build with libsigrokflow" FALSE)
b2d9be03 49option(ENABLE_TESTS "Enable unit tests" FALSE)
61e1e13e 50option(STATIC_PKGDEPS_LIBS "Statically link to (pkg-config) libraries" FALSE)
b04e278d
AG
51
52if(WIN32)
7d297a01
UH
53 # On Windows/MinGW we need to statically link to libraries.
54 # This option is user configurable, but enable it by default on win32.
b04e278d 55 set(STATIC_PKGDEPS_LIBS TRUE)
6987ceeb 56
0aad432c 57 # Windows does not support UNIX signals.
140181a4 58 set(ENABLE_SIGNALS FALSE)
b04e278d 59endif()
506523c1 60
552f686e 61if(NOT CMAKE_BUILD_TYPE)
7591fe23
UH
62 set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
63 "Choose the type of build (None, Debug, Release, RelWithDebInfo, MinSizeRel)."
64 FORCE)
552f686e
JH
65endif()
66
506523c1 67#===============================================================================
f2f536aa
GS
68#= Documentation
69#-------------------------------------------------------------------------------
70
71add_subdirectory(manual)
72
73#===============================================================================
30588653
AG
74#= Dependencies
75#-------------------------------------------------------------------------------
76
723ac3f8 77include(CheckCSourceCompiles)
c303f96d 78include(CheckCXXCompilerFlag)
723ac3f8
GS
79include(CheckCXXSourceCompiles)
80include(CMakePushCheckState)
81include(memaccess)
82
83find_package(PkgConfig)
84
fa8d0fcb
GS
85check_cxx_compiler_flag("-std=c++17" HAVE_STD_CXX_17)
86check_cxx_compiler_flag("-std=c++14" HAVE_STD_CXX_14)
87check_cxx_compiler_flag("-std=c++11" HAVE_STD_CXX_11)
88if(HAVE_STD_CXX_17)
89 message(STATUS "Using C++17 for the application build")
90 set(CMAKE_CXX_STANDARD 17)
91 set(REQUIRED_STD_CXX_FLAGS "-std=c++17")
92elseif(HAVE_STD_CXX_14)
93 message(STATUS "Using C++14 for the application build")
94 set(CMAKE_CXX_STANDARD 14)
95 set(REQUIRED_STD_CXX_FLAGS "-std=c++14")
96elseif(HAVE_STD_CXX_11)
97 message(STATUS "Using C++11 for the application build")
98 set(CMAKE_CXX_STANDARD 11)
99 set(REQUIRED_STD_CXX_FLAGS "-std=c++11")
100else()
101 message(FATAL_ERROR "Need modern C++, at least language standard 11")
102endif()
c303f96d 103
e1e2666e 104list(APPEND PKGDEPS glib-2.0>=2.28.0)
33c5ac28
VPP
105
106# Try to find the prefered glibmm-2.4. If not found then add glibmm-2.68
107# to the dependency list.
108pkg_check_modules(GLIBMM_2_4 glibmm-2.4>2.28.0)
109if(GLIBMM_2_4_FOUND)
110 list(APPEND PKGDEPS glibmm-2.4>=2.28.0)
111else()
112 list(APPEND PKGDEPS glibmm-2.68>=2.68.0)
113endif()
5252f438 114
696c7eac 115if(ENABLE_FLOW)
5252f438 116 list(APPEND PKGDEPS gstreamermm-1.0>=1.8.0)
045d8116 117 list(APPEND PKGDEPS libsigrokflow>=0.1.0)
5252f438 118endif()
d93ac5e8 119
1db57c03 120set(LIBSR_CXX_BINDING "libsigrokcxx>=0.5.2")
844c4619 121list(APPEND PKGDEPS "${LIBSR_CXX_BINDING}")
df944399 122
269528f5 123if(ENABLE_DECODE)
a2d1e7a8 124 list(APPEND PKGDEPS libsigrokdecode>=0.5.2)
269528f5
JH
125endif()
126
aff51746
MC
127if(ANDROID)
128 list(APPEND PKGDEPS libsigrokandroidutils>=0.1.0)
129endif()
130
7bcd627e 131pkg_check_modules(LIBSRCXX ${LIBSR_CXX_BINDING})
844c4619
GS
132if(NOT LIBSRCXX_FOUND OR NOT LIBSRCXX_VERSION)
133 message(FATAL_ERROR "libsigrok C++ bindings missing, check libsigrok's 'configure' output (missing dependencies?)")
134endif()
d52d8455
JH
135pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS})
136
e222f01e 137set(CMAKE_AUTOMOC TRUE)
e222f01e 138
136995b8
VPP
139# Check for Qt5, and check for Qt6 if Qt5 is not found.
140set(QT_COMPONENTS Core Gui LinguistTools Widgets Svg)
141find_package(Qt5 5.3 QUIET COMPONENTS Core)
142if(Qt5_FOUND)
143 find_package(Qt5 5.3 COMPONENTS ${QT_COMPONENTS} REQUIRED)
144 message(STATUS "Qt version: ${Qt5_VERSION}")
145else()
146 find_package(Qt6 6.2 COMPONENTS ${QT_COMPONENTS} REQUIRED)
147 message(STATUS "Qt version: ${Qt6_VERSION}")
148endif()
e08e8cc8 149
09f55d96 150if(WIN32)
136995b8 151 # MXE workaround: Use pkg-config to find Qt5 and Qt6 libs.
09f55d96 152 # https://github.com/mxe/mxe/issues/1642
929b9b19
UH
153 # Not required (and doesn't work) on MSYS2.
154 if(NOT DEFINED ENV{MSYSTEM})
136995b8
VPP
155 if(Qt5_FOUND)
156 pkg_check_modules(QT5ALL REQUIRED Qt5Widgets>=5.3 Qt5Gui>=5.3 Qt5Svg>=5.3)
157 else()
158 pkg_check_modules(QT6ALL REQUIRED Qt6Widgets>=6.2 Qt6Gui>=6.2 Qt6Svg>=6.2)
159 endif()
929b9b19 160 endif()
09f55d96 161endif()
9e8e84fc 162
136995b8
VPP
163if(Qt5_FOUND)
164 set(QT_LIBRARIES Qt5::Gui Qt5::Widgets Qt5::Svg)
165else()
166 set(QT_LIBRARIES Qt6::Gui Qt6::Widgets Qt6::Svg)
167endif()
2e2946fe 168
b8f1cdeb 169set(BOOSTCOMPS filesystem serialization system)
226a1527 170if(ENABLE_TESTS)
d68d75c2 171 list(APPEND BOOSTCOMPS unit_test_framework)
2a21747e 172endif()
c1a688de
SA
173
174if(ENABLE_STACKTRACE)
b409dfdc
WS
175 include(FindBacktrace)
176 if (Backtrace_FOUND)
177 set(_Boost_STACKTRACE_BACKTRACE_HEADERS "boost/stacktrace.hpp")
178 list(APPEND BOOSTCOMPS stacktrace_backtrace)
179 else()
180 set(_Boost_STACKTRACE_BASIC_HEADERS "boost/stacktrace.hpp")
181 list(APPEND BOOSTCOMPS stacktrace_basic)
182 endif()
c1a688de
SA
183 find_package(Boost 1.65.1 COMPONENTS ${BOOSTCOMPS} REQUIRED)
184else()
185 find_package(Boost 1.55 COMPONENTS ${BOOSTCOMPS} REQUIRED)
186endif()
df944399 187
858ae630
UH
188# Find the platform's thread library (needed for C++11 threads).
189# This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value.
2b76309a
AJ
190find_package(Threads REQUIRED)
191
4da54b6b
SM
192# Check for explicit link against libatomic
193#
194# Depending on the toolchain, linking a program using atomic functions may need
195# "-latomic" explicitly passed to the linker
196#
197# This check first tests if atomics are available in the C-library, if not and
198# libatomic exists, then it runs the same test with -latomic added to the
199# linker flags.
200
201# Helper for checking for atomics
202function(check_working_cxx_atomics varname additional_lib)
d56edfc6 203 cmake_push_check_state()
fa8d0fcb 204 set(CMAKE_REQUIRED_FLAGS "${REQUIRED_STD_CXX_FLAGS}")
d56edfc6
VPP
205 set(CMAKE_REQUIRED_LIBRARIES "${additional_lib}")
206 set(CMAKE_REQUIRED_QUIET 1)
207 CHECK_CXX_SOURCE_COMPILES("
4da54b6b
SM
208#include <atomic>
209std::atomic<int> x;
210int main() {
d56edfc6 211 return std::atomic_fetch_add_explicit(&x, 1, std::memory_order_seq_cst);
4da54b6b
SM
212}
213" ${varname})
d56edfc6 214 cmake_pop_check_state()
4da54b6b
SM
215endfunction(check_working_cxx_atomics)
216
217# First check if atomics work without the library.
218# If not, check if the library exists, and atomics work with it.
219check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITHOUT_LIB "")
220if(HAVE_CXX_ATOMICS_WITHOUT_LIB)
d56edfc6 221 message(STATUS "Atomics provided by the C-library - yes")
4da54b6b 222else()
d56edfc6
VPP
223 message(STATUS "Atomics provided by the C-library - no")
224 find_library(LIBATOMIC_LIBRARY NAMES atomic PATH_SUFFIXES lib)
225 if(LIBATOMIC_LIBRARY)
226 check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITH_LIB "${LIBATOMIC_LIBRARY}")
227 if (HAVE_CXX_ATOMICS_WITH_LIB)
228 message(STATUS "Atomics provided by libatomic - yes")
229 else()
230 message(STATUS "Atomics provided by libatomic - no")
231 message(FATAL_ERROR "Compiler must support std::atomic!")
232 endif()
233 else()
234 message(FATAL_ERROR "Compiler appears to require libatomic, but cannot find it.")
235 endif()
4da54b6b
SM
236endif()
237
fe94bf82
GS
238# Check availability of features which depend on library versions.
239# TODO Ideally use check_symbol_exists() instead, reduce boilerplate.
240if(ENABLE_DECODE)
fe94bf82
GS
241 cmake_push_check_state()
242 set(CMAKE_REQUIRED_INCLUDES "${PKGDEPS_INCLUDE_DIRS}")
243 set(CMAKE_REQUIRED_LIBRARIES "sigrokdecode")
244 foreach (LPATH ${PKGDEPS_LIBRARY_DIRS})
245 list(APPEND CMAKE_REQUIRED_LINK_OPTIONS "-L${LPATH}")
246 endforeach ()
247 check_c_source_compiles("
248 #include <libsigrokdecode/libsigrokdecode.h>
249 int main(int argc, char *argv[])
250 {
251 (void)argc;
252 (void)argv;
253 return srd_session_send_eof(NULL);
254 }
255 " HAVE_SRD_SESSION_SEND_EOF)
256 cmake_pop_check_state()
257endif()
258
9df8453f
MC
259#===============================================================================
260#= System Introspection
261#-------------------------------------------------------------------------------
262
9df8453f
MC
263memaccess_check_unaligned_le(HAVE_UNALIGNED_LITTLE_ENDIAN_ACCESS)
264
075fb499
AG
265#===============================================================================
266#= Config Header
267#-------------------------------------------------------------------------------
268
f7951df4 269set(PV_TITLE PulseView)
e2649143 270set(PV_VERSION_STRING "0.5.0")
f7951df4 271
33c5ac28
VPP
272if(GLIBMM_2_4_FOUND)
273 set(PV_GLIBMM_VERSION ${PKGDEPS_glibmm-2.4_VERSION})
274else()
275 set(PV_GLIBMM_VERSION ${PKGDEPS_glibmm-2.68_VERSION})
276endif()
d93ac5e8 277
1e8c82e9 278include(GetGitRevisionDescription)
1e8c82e9 279
812c0e35
DE
280# Append the revision hash unless we are exactly on a tagged release.
281git_describe(PV_TAG_VERSION_STRING --match "pulseview-${PV_VERSION_STRING}" --exact-match)
282if(NOT PV_TAG_VERSION_STRING)
283 get_git_head_revision(PV_REVSPEC PV_HASH)
284 if(PV_HASH)
285 string(SUBSTRING "${PV_HASH}" 0 7 PV_SHORTHASH)
286 set(PV_VERSION_STRING "${PV_VERSION_STRING}-git-${PV_SHORTHASH}")
d69b3c31 287 endif()
a53b8efe
SA
288
289 # Non-tagged releases use the unstable manual
290 set(PV_MANUAL_VERSION "unstable")
291else()
292 # Tagged releases use a fixed manual version
293 set(PV_MANUAL_VERSION ${PV_VERSION_STRING})
d69b3c31
DE
294endif()
295
296if(PV_VERSION_STRING MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)(-[-0-9a-z]*)?$")
1e8c82e9
DE
297 set(PV_VERSION_MAJOR ${CMAKE_MATCH_1})
298 set(PV_VERSION_MINOR ${CMAKE_MATCH_2})
299 set(PV_VERSION_MICRO ${CMAKE_MATCH_3})
300 set(PV_VERSION_SUFFIX ${CMAKE_MATCH_4})
1e8c82e9
DE
301endif()
302
1e3a52e3 303message(STATUS "${PV_TITLE} version: ${PV_VERSION_STRING}")
075fb499
AG
304
305configure_file (
306 ${PROJECT_SOURCE_DIR}/config.h.in
307 ${PROJECT_BINARY_DIR}/config.h
308)
df944399 309
30588653
AG
310#===============================================================================
311#= Sources
312#-------------------------------------------------------------------------------
313
a8d3fb2d 314set(pulseview_SOURCES
df944399 315 main.cpp
dac1bb97 316 pv/application.cpp
107ca6d3 317 pv/devicemanager.cpp
bf9f1268 318 pv/globalsettings.cpp
bcb4c327 319 pv/logging.cpp
51e77110 320 pv/mainwindow.cpp
f2739bae 321 pv/metadata_obj.cpp
f65cd27b 322 pv/session.cpp
0fbda3c2 323 pv/storesession.cpp
f0c9f81c 324 pv/util.cpp
61703a01 325 pv/binding/binding.cpp
0c913637 326 pv/binding/inputoutput.cpp
3cc9ad7b 327 pv/binding/device.cpp
1b1ec774 328 pv/data/analog.cpp
f3d66e52 329 pv/data/analogsegment.cpp
1b1ec774 330 pv/data/logic.cpp
f3d66e52 331 pv/data/logicsegment.cpp
b0773a8a 332 pv/data/mathsignal.cpp
bf0edd2b 333 pv/data/signalbase.cpp
1b1ec774 334 pv/data/signaldata.cpp
f3d66e52 335 pv/data/segment.cpp
da30ecb7 336 pv/devices/device.cpp
474e817a 337 pv/devices/file.cpp
da30ecb7 338 pv/devices/hardwaredevice.cpp
5237f0c5 339 pv/devices/inputfile.cpp
da30ecb7 340 pv/devices/sessionfile.cpp
9663c82b 341 pv/dialogs/connect.cpp
e93f5538 342 pv/dialogs/inputoutputoptions.cpp
bf9f1268 343 pv/dialogs/settings.cpp
0fbda3c2 344 pv/dialogs/storeprogress.cpp
51d4a9ab 345 pv/popups/deviceoptions.cpp
6ac6242b 346 pv/popups/channels.cpp
de1d99bb 347 pv/prop/bool.cpp
b912c99c 348 pv/prop/double.cpp
820c3dea 349 pv/prop/enum.cpp
a2b92157 350 pv/prop/int.cpp
c8df6005 351 pv/prop/property.cpp
7112a458 352 pv/prop/string.cpp
97378470 353 pv/subwindows/subwindowbase.cpp
7c657094 354 pv/toolbars/mainbar.cpp
1573bf16
SA
355 pv/views/trace/analogsignal.cpp
356 pv/views/trace/cursor.cpp
357 pv/views/trace/cursorpair.cpp
358 pv/views/trace/flag.cpp
359 pv/views/trace/header.cpp
4640a84e 360 pv/views/trace/mathsignal.cpp
1573bf16
SA
361 pv/views/trace/marginwidget.cpp
362 pv/views/trace/logicsignal.cpp
1573bf16
SA
363 pv/views/trace/ruler.cpp
364 pv/views/trace/signal.cpp
1573bf16
SA
365 pv/views/trace/timeitem.cpp
366 pv/views/trace/timemarker.cpp
367 pv/views/trace/trace.cpp
368 pv/views/trace/tracegroup.cpp
369 pv/views/trace/tracepalette.cpp
370 pv/views/trace/tracetreeitem.cpp
371 pv/views/trace/tracetreeitemowner.cpp
372 pv/views/trace/triggermarker.cpp
373 pv/views/trace/view.cpp
374 pv/views/trace/viewitem.cpp
375 pv/views/trace/viewitemowner.cpp
376 pv/views/trace/viewitempaintparams.cpp
377 pv/views/trace/viewport.cpp
378 pv/views/trace/viewwidget.cpp
f4e57597 379 pv/views/viewbase.cpp
e0ba4f6f 380 pv/views/trace/standardbar.cpp
641574bc
SA
381 pv/widgets/colorbutton.cpp
382 pv/widgets/colorpopup.cpp
079d39ea 383 pv/widgets/devicetoolbutton.cpp
ce6001b8 384 pv/widgets/exportmenu.cpp
adf9e022 385 pv/widgets/flowlayout.cpp
56b6fc88 386 pv/widgets/importmenu.cpp
6e3f046e 387 pv/widgets/popup.cpp
6a91973f 388 pv/widgets/popuptoolbutton.cpp
1198b887 389 pv/widgets/sweeptimingwidget.cpp
806d3e1e 390 pv/widgets/timestampspinbox.cpp
0c0e1888 391 pv/widgets/wellarray.cpp
df944399
JH
392)
393
0aad432c 394# This list includes only QObject derived class headers.
a8d3fb2d 395set(pulseview_HEADERS
4640a84e 396 pv/exprtk.hpp
bcb4c327 397 pv/logging.hpp
bf9f1268 398 pv/globalsettings.hpp
2acdb232 399 pv/mainwindow.hpp
f2739bae 400 pv/metadata_obj.hpp
f65cd27b 401 pv/session.hpp
2acdb232 402 pv/storesession.hpp
3cc9ad7b 403 pv/binding/device.hpp
7db61e77
SA
404 pv/data/analog.hpp
405 pv/data/analogsegment.hpp
406 pv/data/logic.hpp
407 pv/data/logicsegment.hpp
b0773a8a 408 pv/data/mathsignal.hpp
bf0edd2b 409 pv/data/signalbase.hpp
2acdb232 410 pv/dialogs/connect.hpp
e93f5538 411 pv/dialogs/inputoutputoptions.hpp
bf9f1268 412 pv/dialogs/settings.hpp
2acdb232
JH
413 pv/dialogs/storeprogress.hpp
414 pv/popups/channels.hpp
415 pv/popups/deviceoptions.hpp
416 pv/prop/bool.hpp
417 pv/prop/double.hpp
418 pv/prop/enum.hpp
419 pv/prop/int.hpp
420 pv/prop/property.hpp
421 pv/prop/string.hpp
97378470 422 pv/subwindows/subwindowbase.hpp
7c657094 423 pv/toolbars/mainbar.hpp
1573bf16
SA
424 pv/views/trace/analogsignal.hpp
425 pv/views/trace/cursor.hpp
426 pv/views/trace/flag.hpp
427 pv/views/trace/header.hpp
428 pv/views/trace/logicsignal.hpp
4640a84e 429 pv/views/trace/mathsignal.hpp
1573bf16 430 pv/views/trace/marginwidget.hpp
1573bf16
SA
431 pv/views/trace/ruler.hpp
432 pv/views/trace/signal.hpp
1573bf16
SA
433 pv/views/trace/timeitem.hpp
434 pv/views/trace/timemarker.hpp
435 pv/views/trace/trace.hpp
436 pv/views/trace/tracegroup.hpp
437 pv/views/trace/tracetreeitem.hpp
438 pv/views/trace/triggermarker.hpp
439 pv/views/trace/view.hpp
440 pv/views/trace/viewitem.hpp
441 pv/views/trace/viewport.hpp
442 pv/views/trace/viewwidget.hpp
f4e57597 443 pv/views/viewbase.hpp
e0ba4f6f 444 pv/views/trace/standardbar.hpp
641574bc
SA
445 pv/widgets/colorbutton.hpp
446 pv/widgets/colorpopup.hpp
079d39ea 447 pv/widgets/devicetoolbutton.hpp
ce6001b8 448 pv/widgets/exportmenu.hpp
adf9e022 449 pv/widgets/flowlayout.hpp
56b6fc88 450 pv/widgets/importmenu.hpp
2acdb232
JH
451 pv/widgets/popup.hpp
452 pv/widgets/popuptoolbutton.hpp
453 pv/widgets/sweeptimingwidget.hpp
806d3e1e 454 pv/widgets/timestampspinbox.hpp
2acdb232 455 pv/widgets/wellarray.hpp
df944399
JH
456)
457
8b9056d4
UH
458set(pulseview_RESOURCES
459 pulseview.qrc
460)
461
140181a4
JH
462if(ENABLE_SIGNALS)
463 list(APPEND pulseview_SOURCES signalhandler.cpp)
2acdb232 464 list(APPEND pulseview_HEADERS signalhandler.hpp)
140181a4
JH
465endif()
466
269528f5
JH
467if(ENABLE_DECODE)
468 list(APPEND pulseview_SOURCES
3cc9ad7b 469 pv/binding/decoder.cpp
ad908057 470 pv/data/decodesignal.cpp
269528f5
JH
471 pv/data/decode/annotation.cpp
472 pv/data/decode/decoder.cpp
f9101a91
JH
473 pv/data/decode/row.cpp
474 pv/data/decode/rowdata.cpp
97378470
SA
475 pv/subwindows/decoder_selector/item.cpp
476 pv/subwindows/decoder_selector/model.cpp
477 pv/subwindows/decoder_selector/subwindow.cpp
121307b3
SA
478 pv/views/decoder_binary/view.cpp
479 pv/views/decoder_binary/QHexView.cpp
24d69d27
SA
480 pv/views/tabular_decoder/model.cpp
481 pv/views/tabular_decoder/view.cpp
1573bf16 482 pv/views/trace/decodetrace.cpp
269528f5
JH
483 pv/widgets/decodergroupbox.cpp
484 pv/widgets/decodermenu.cpp
269528f5
JH
485 )
486
487 list(APPEND pulseview_HEADERS
ad908057 488 pv/data/decodesignal.hpp
97378470 489 pv/subwindows/decoder_selector/subwindow.hpp
121307b3
SA
490 pv/views/decoder_binary/view.hpp
491 pv/views/decoder_binary/QHexView.hpp
24d69d27 492 pv/views/tabular_decoder/view.hpp
1573bf16 493 pv/views/trace/decodetrace.hpp
2acdb232
JH
494 pv/widgets/decodergroupbox.hpp
495 pv/widgets/decodermenu.hpp
269528f5
JH
496 )
497endif()
498
fe15e0bc
UH
499if(WIN32)
500 # Use the sigrok icon for the pulseview.exe executable.
501 set(CMAKE_RC_COMPILE_OBJECT "${CMAKE_RC_COMPILER} -O coff -I${CMAKE_CURRENT_SOURCE_DIR} <SOURCE> <OBJECT>")
502 enable_language(RC)
61e1e13e 503 list(APPEND pulseview_SOURCES pulseviewico.rc)
fe15e0bc
UH
504endif()
505
9137928c 506if(ANDROID)
dddff2e7
DE
507 list(APPEND pulseview_SOURCES
508 android/assetreader.cpp
509 android/loghandler.cpp
510 )
9137928c
MC
511endif()
512
136995b8
VPP
513if(Qt5_FOUND)
514 qt5_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
515else()
516 qt6_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
517endif()
8b9056d4 518
0466001b
SA
519#===============================================================================
520#= Translations
521#-------------------------------------------------------------------------------
522
c3660d7d
SA
523file(GLOB TS_FILES ${CMAKE_SOURCE_DIR}/l10n/*.ts)
524set_property(SOURCE ${TS_FILES} PROPERTY OUTPUT_LOCATION ${CMAKE_BINARY_DIR}/l10n)
989d50ad 525if (NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
526 configure_file("translations.qrc" "translations.qrc" COPYONLY)
527endif ()
0466001b 528
136995b8
VPP
529if(Qt5_FOUND)
530 qt5_add_translation(QM_FILES ${TS_FILES})
531 qt5_create_translation(QM_FILES ${pulseview_SOURCES} ${TS_FILES})
0466001b 532
136995b8
VPP
533 qt5_add_resources(pulseview_RESOURCES_RCC ${CMAKE_BINARY_DIR}/translations.qrc)
534else()
535 qt6_add_translation(QM_FILES ${TS_FILES})
536 qt6_create_translation(QM_FILES ${pulseview_SOURCES} ${TS_FILES})
537
538 qt6_add_resources(pulseview_RESOURCES_RCC ${CMAKE_BINARY_DIR}/translations.qrc)
539endif()
0466001b 540
30588653
AG
541#===============================================================================
542#= Global Definitions
543#-------------------------------------------------------------------------------
544
e222f01e 545add_definitions(-DQT_NO_KEYWORDS)
ac223c1e 546add_definitions(-D__STDC_LIMIT_MACROS)
a9974171 547add_definitions(-Wall -Wextra)
fa8d0fcb 548add_definitions(${REQUIRED_STD_CXX_FLAGS})
c303f96d 549
a838ed7b 550add_definitions(-DBOOST_MATH_DISABLE_FLOAT128=1)
d8cdab78
UH
551if(WIN32)
552 add_definitions(-Wa,-mbig-obj -O3)
553endif()
5f606159 554
696c7eac
UH
555if(ENABLE_FLOW)
556 add_definitions(-DENABLE_FLOW)
5252f438
UH
557endif()
558
269528f5
JH
559if(ENABLE_DECODE)
560 add_definitions(-DENABLE_DECODE)
561endif()
562
5f606159
JH
563if(NOT DISABLE_WERROR)
564 add_definitions(-Werror)
565endif()
df944399 566
9632990d
UH
567if(ENABLE_SIGNALS)
568 add_definitions(-DENABLE_SIGNALS)
569endif()
570
c1a688de 571if(ENABLE_STACKTRACE)
b409dfdc
WS
572 add_definitions(-DENABLE_STACKTRACE -no-pie -fno-pie)
573 if (Backtrace_FOUND)
574 add_definitions(-DBOOST_STACKTRACE_USE_BACKTRACE)
575 endif()
c1a688de
SA
576endif()
577
30588653
AG
578#===============================================================================
579#= Global Include Directories
580#-------------------------------------------------------------------------------
581
b04e278d
AG
582include_directories(
583 ${CMAKE_CURRENT_BINARY_DIR}
cef18fc6 584 ${CMAKE_CURRENT_SOURCE_DIR}
b04e278d
AG
585 ${Boost_INCLUDE_DIRS}
586)
587
588if(STATIC_PKGDEPS_LIBS)
589 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
590else()
591 include_directories(${PKGDEPS_INCLUDE_DIRS})
592endif()
df944399 593
30588653
AG
594#===============================================================================
595#= Linker Configuration
596#-------------------------------------------------------------------------------
597
b04e278d
AG
598link_directories(${Boost_LIBRARY_DIRS})
599
600set(PULSEVIEW_LINK_LIBS
601 ${Boost_LIBRARIES}
602 ${QT_LIBRARIES}
2b76309a 603 ${CMAKE_THREAD_LIBS_INIT}
4da54b6b 604 ${LIBATOMIC_LIBRARY}
b04e278d
AG
605)
606
607if(STATIC_PKGDEPS_LIBS)
cddf172d 608 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
09f55d96 609 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LDFLAGS})
b04e278d 610else()
cddf172d
UH
611 link_directories(${PKGDEPS_LIBRARY_DIRS})
612 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
b04e278d 613endif()
df944399 614
11a04e2a
UH
615if(WIN32)
616 # On Windows we need to statically link the libqsvg imageformat
617 # plugin (and the QtSvg component) for SVG graphics/icons to work.
356fb5c0
UH
618 # We also need QWindowsIntegrationPlugin, Qt5PlatformSupport (only for
619 # Qt < 5.8.0), and all Qt libs and their dependencies.
11a04e2a 620 add_definitions(-DQT_STATICPLUGIN)
136995b8
VPP
621 if(Qt5_FOUND)
622 list(APPEND PULSEVIEW_LINK_LIBS Qt5::QSvgPlugin)
623 list(APPEND PULSEVIEW_LINK_LIBS Qt5::QWindowsIntegrationPlugin)
624 if(Qt5Gui_VERSION VERSION_LESS 5.8.0)
625 list(APPEND PULSEVIEW_LINK_LIBS -lQt5PlatformSupport)
626 endif()
627 list(APPEND PULSEVIEW_LINK_LIBS ${QT5ALL_LDFLAGS})
628 else()
629 list(APPEND PULSEVIEW_LINK_LIBS Qt6::QSvgPlugin)
630 list(APPEND PULSEVIEW_LINK_LIBS Qt6::QWindowsIntegrationPlugin)
631 list(APPEND PULSEVIEW_LINK_LIBS ${QT6ALL_LDFLAGS})
356fb5c0 632 endif()
11a04e2a
UH
633endif()
634
c1a688de 635if(ENABLE_STACKTRACE)
b409dfdc
WS
636 list(APPEND PULSEVIEW_LINK_LIBS ${CMAKE_DL_LIBS} ${Backtrace_LIBRARIES})
637 link_libraries("-no-pie -fno-pie")
c1a688de
SA
638endif()
639
9137928c
MC
640if(ANDROID)
641 list(APPEND PULSEVIEW_LINK_LIBS "-llog")
642endif()
643
c243364c 644set(INPUT_FILES_LIST ${pulseview_SOURCES} ${pulseview_RESOURCES_RCC} ${QM_FILES})
26807061 645if(ANDROID)
c243364c 646 add_library(${PROJECT_NAME} SHARED ${INPUT_FILES_LIST})
26807061 647else()
c243364c 648 add_executable(${PROJECT_NAME} ${INPUT_FILES_LIST})
26807061 649endif()
df944399 650
5a13850b 651target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
f0fa92c6 652
b732b48f 653if(WIN32 AND NOT ${CMAKE_BUILD_TYPE} STREQUAL "Debug")
61e1e13e
UH
654 # Pass -mwindows so that no "DOS box" opens when PulseView is started.
655 set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
b0d8c0dc
UH
656endif()
657
30588653
AG
658#===============================================================================
659#= Installation
660#-------------------------------------------------------------------------------
661
52bbe600 662# Install the executable.
cd6606c2
AG
663install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
664
52bbe600
UH
665# Install the manpage.
666install(FILES doc/pulseview.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc)
667
96e282c4
UH
668# Install the desktop file.
669install(FILES contrib/org.sigrok.PulseView.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
670
22fc985b
UH
671# Install the AppData/AppStream file.
672install(FILES contrib/org.sigrok.PulseView.appdata.xml DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo)
673
09594425
UH
674# Install the PulseView icons.
675install(FILES icons/pulseview.png DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/48x48/apps)
676install(FILES icons/pulseview.svg DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/apps)
677
f9cb49cc 678# Generate Windows installer script.
baef263a 679configure_file(contrib/pulseview_cross.nsi.in ${CMAKE_CURRENT_BINARY_DIR}/contrib/pulseview_cross.nsi @ONLY)
f9cb49cc 680
cd6606c2
AG
681#===============================================================================
682#= Packaging (handled by CPack)
683#-------------------------------------------------------------------------------
684
b02a8cbf
JH
685set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
686set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
687set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
cd6606c2
AG
688set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
689set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
690set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
1e8c82e9 691set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${PV_VERSION_STRING}")
1d2fb87d 692set(CPACK_SOURCE_GENERATOR "TGZ")
cd6606c2
AG
693
694include(CPack)
bc1c1462 695
30588653
AG
696#===============================================================================
697#= Tests
698#-------------------------------------------------------------------------------
699
77e8ac52 700if(ENABLE_TESTS)
fb746bcc 701 add_subdirectory(test)
951c583c 702 enable_testing()
fb746bcc 703 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
0aad432c 704endif()