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