2 ## This file is part of the PulseView project.
4 ## Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 ## Copyright (C) 2012-2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
7 ## This program is free software: you can redistribute it and/or modify
8 ## it under the terms of the GNU General Public License as published by
9 ## the Free Software Foundation, either version 2 of the License, or
10 ## (at your option) any later version.
12 ## This program is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ## GNU General Public License for more details.
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
21 cmake_minimum_required(VERSION 2.8.12)
23 include(GNUInstallDirs)
27 list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
29 #===============================================================================
31 #-------------------------------------------------------------------------------
33 option(DISABLE_WERROR "Build without -Werror" FALSE)
34 option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
35 option(ENABLE_DECODE "Build with libsigrokdecode" TRUE)
36 option(ENABLE_TESTS "Enable unit tests" TRUE)
37 option(STATIC_PKGDEPS_LIBS "Statically link to (pkg-config) libraries" FALSE)
40 # On Windows/MinGW we need to statically link to libraries.
41 # This option is user configurable, but enable it by default on win32.
42 set(STATIC_PKGDEPS_LIBS TRUE)
44 # Windows does not support UNIX signals.
45 set(ENABLE_SIGNALS FALSE)
48 if(NOT CMAKE_BUILD_TYPE)
49 set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
50 "Choose the type of build (None, Debug, Release, RelWithDebInfo, MinSizeRel)."
54 #===============================================================================
56 #-------------------------------------------------------------------------------
58 list(APPEND PKGDEPS glib-2.0>=2.28.0)
59 list(APPEND PKGDEPS glibmm-2.4>=2.28.0)
61 list(APPEND PKGDEPS libsigrokcxx>=0.5.0)
64 list(APPEND PKGDEPS libsigrokdecode>=0.5.0)
68 list(APPEND PKGDEPS libsigrokandroidutils>=0.1.0)
71 find_package(PkgConfig)
72 pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS})
74 set(CMAKE_AUTOMOC TRUE)
76 find_package(Qt5 COMPONENTS Core Gui Widgets Svg REQUIRED)
79 # MXE workaround: Use pkg-config to find Qt5 libs.
80 # https://github.com/mxe/mxe/issues/1642
81 pkg_check_modules(QT5ALL REQUIRED Qt5Widgets Qt5Gui Qt5Svg)
84 set(QT_LIBRARIES Qt5::Gui Qt5::Widgets Qt5::Svg)
86 set(BOOSTCOMPS filesystem serialization system)
88 list(APPEND BOOSTCOMPS unit_test_framework)
90 find_package(Boost 1.55 COMPONENTS ${BOOSTCOMPS} REQUIRED)
92 # Find the platform's thread library (needed for C++11 threads).
93 # This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value.
94 find_package(Threads REQUIRED)
96 # Check for explicit link against libatomic
98 # Depending on the toolchain, linking a program using atomic functions may need
99 # "-latomic" explicitly passed to the linker
101 # This check first tests if atomics are available in the C-library, if not and
102 # libatomic exists, then it runs the same test with -latomic added to the
105 # Helper for checking for atomics
106 function(check_working_cxx_atomics varname additional_lib)
107 include(CheckCXXSourceCompiles)
108 include(CMakePushCheckState)
109 cmake_push_check_state()
110 set(CMAKE_REQUIRED_FLAGS "-std=c++11")
111 set(CMAKE_REQUIRED_LIBRARIES "${additional_lib}")
112 set(CMAKE_REQUIRED_QUIET 1)
113 CHECK_CXX_SOURCE_COMPILES("
117 return std::atomic_fetch_add_explicit(&x, 1, std::memory_order_seq_cst);
120 cmake_pop_check_state()
121 endfunction(check_working_cxx_atomics)
123 # First check if atomics work without the library.
124 # If not, check if the library exists, and atomics work with it.
125 check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITHOUT_LIB "")
126 if(HAVE_CXX_ATOMICS_WITHOUT_LIB)
127 message(STATUS "Atomics provided by the C-library - yes")
129 message(STATUS "Atomics provided by the C-library - no")
130 find_library(LIBATOMIC_LIBRARY NAMES atomic PATH_SUFFIXES lib)
131 if(LIBATOMIC_LIBRARY)
132 check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITH_LIB "${LIBATOMIC_LIBRARY}")
133 if (HAVE_CXX_ATOMICS_WITH_LIB)
134 message(STATUS "Atomics provided by libatomic - yes")
136 message(STATUS "Atomics provided by libatomic - no")
137 message(FATAL_ERROR "Compiler must support std::atomic!")
140 message(FATAL_ERROR "Compiler appears to require libatomic, but cannot find it.")
144 #===============================================================================
145 #= System Introspection
146 #-------------------------------------------------------------------------------
149 memaccess_check_unaligned_le(HAVE_UNALIGNED_LITTLE_ENDIAN_ACCESS)
151 #===============================================================================
153 #-------------------------------------------------------------------------------
155 set(PV_TITLE PulseView)
156 set(PV_VERSION_STRING "0.4.0")
158 set(PV_GLIBMM_VERSION ${PKGDEPS_glibmm-2.4_VERSION})
160 include(GetGitRevisionDescription)
162 # Append the revision hash unless we are exactly on a tagged release.
163 git_describe(PV_TAG_VERSION_STRING --match "pulseview-${PV_VERSION_STRING}" --exact-match)
164 if(NOT PV_TAG_VERSION_STRING)
165 get_git_head_revision(PV_REVSPEC PV_HASH)
167 string(SUBSTRING "${PV_HASH}" 0 7 PV_SHORTHASH)
168 set(PV_VERSION_STRING "${PV_VERSION_STRING}-git-${PV_SHORTHASH}")
172 if(PV_VERSION_STRING MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)(-[-0-9a-z]*)?$")
173 set(PV_VERSION_MAJOR ${CMAKE_MATCH_1})
174 set(PV_VERSION_MINOR ${CMAKE_MATCH_2})
175 set(PV_VERSION_MICRO ${CMAKE_MATCH_3})
176 set(PV_VERSION_SUFFIX ${CMAKE_MATCH_4})
179 message("-- ${PV_TITLE} version: ${PV_VERSION_STRING}")
182 ${PROJECT_SOURCE_DIR}/config.h.in
183 ${PROJECT_BINARY_DIR}/config.h
186 #===============================================================================
188 #-------------------------------------------------------------------------------
190 set(pulseview_SOURCES
194 pv/globalsettings.cpp
199 pv/binding/binding.cpp
200 pv/binding/inputoutput.cpp
201 pv/binding/device.cpp
203 pv/data/analogsegment.cpp
205 pv/data/logicsegment.cpp
206 pv/data/signalbase.cpp
207 pv/data/signaldata.cpp
209 pv/devices/device.cpp
211 pv/devices/hardwaredevice.cpp
212 pv/devices/inputfile.cpp
213 pv/devices/sessionfile.cpp
214 pv/dialogs/connect.cpp
215 pv/dialogs/inputoutputoptions.cpp
216 pv/dialogs/settings.cpp
217 pv/dialogs/storeprogress.cpp
218 pv/popups/deviceoptions.cpp
219 pv/popups/channels.cpp
226 pv/toolbars/mainbar.cpp
227 pv/views/trace/analogsignal.cpp
228 pv/views/trace/cursor.cpp
229 pv/views/trace/cursorpair.cpp
230 pv/views/trace/flag.cpp
231 pv/views/trace/header.cpp
232 pv/views/trace/marginwidget.cpp
233 pv/views/trace/logicsignal.cpp
234 pv/views/trace/rowitem.cpp
235 pv/views/trace/ruler.cpp
236 pv/views/trace/signal.cpp
237 pv/views/trace/signalscalehandle.cpp
238 pv/views/trace/timeitem.cpp
239 pv/views/trace/timemarker.cpp
240 pv/views/trace/trace.cpp
241 pv/views/trace/tracegroup.cpp
242 pv/views/trace/tracepalette.cpp
243 pv/views/trace/tracetreeitem.cpp
244 pv/views/trace/tracetreeitemowner.cpp
245 pv/views/trace/triggermarker.cpp
246 pv/views/trace/view.cpp
247 pv/views/trace/viewitem.cpp
248 pv/views/trace/viewitemowner.cpp
249 pv/views/trace/viewitempaintparams.cpp
250 pv/views/trace/viewport.cpp
251 pv/views/trace/viewwidget.cpp
252 pv/views/viewbase.cpp
253 pv/views/trace/standardbar.cpp
254 pv/widgets/colourbutton.cpp
255 pv/widgets/colourpopup.cpp
256 pv/widgets/devicetoolbutton.cpp
257 pv/widgets/exportmenu.cpp
258 pv/widgets/importmenu.cpp
260 pv/widgets/popuptoolbutton.cpp
261 pv/widgets/sweeptimingwidget.cpp
262 pv/widgets/timestampspinbox.cpp
263 pv/widgets/wellarray.cpp
266 # This list includes only QObject derived class headers.
267 set(pulseview_HEADERS
268 pv/globalsettings.hpp
272 pv/binding/device.hpp
274 pv/data/analogsegment.hpp
276 pv/data/logicsegment.hpp
277 pv/data/signalbase.hpp
278 pv/dialogs/connect.hpp
279 pv/dialogs/inputoutputoptions.hpp
280 pv/dialogs/settings.hpp
281 pv/dialogs/storeprogress.hpp
282 pv/popups/channels.hpp
283 pv/popups/deviceoptions.hpp
290 pv/toolbars/mainbar.hpp
291 pv/views/trace/analogsignal.hpp
292 pv/views/trace/cursor.hpp
293 pv/views/trace/flag.hpp
294 pv/views/trace/header.hpp
295 pv/views/trace/logicsignal.hpp
296 pv/views/trace/marginwidget.hpp
297 pv/views/trace/rowitem.hpp
298 pv/views/trace/ruler.hpp
299 pv/views/trace/signal.hpp
300 pv/views/trace/signalscalehandle.hpp
301 pv/views/trace/timeitem.hpp
302 pv/views/trace/timemarker.hpp
303 pv/views/trace/trace.hpp
304 pv/views/trace/tracegroup.hpp
305 pv/views/trace/tracetreeitem.hpp
306 pv/views/trace/triggermarker.hpp
307 pv/views/trace/view.hpp
308 pv/views/trace/viewitem.hpp
309 pv/views/trace/viewport.hpp
310 pv/views/trace/viewwidget.hpp
311 pv/views/viewbase.hpp
312 pv/views/trace/standardbar.hpp
313 pv/widgets/colourbutton.hpp
314 pv/widgets/colourpopup.hpp
315 pv/widgets/devicetoolbutton.hpp
316 pv/widgets/exportmenu.hpp
317 pv/widgets/importmenu.hpp
319 pv/widgets/popuptoolbutton.hpp
320 pv/widgets/sweeptimingwidget.hpp
321 pv/widgets/timestampspinbox.hpp
322 pv/widgets/wellarray.hpp
325 set(pulseview_RESOURCES
330 list(APPEND pulseview_SOURCES signalhandler.cpp)
331 list(APPEND pulseview_HEADERS signalhandler.hpp)
335 list(APPEND pulseview_SOURCES
336 pv/binding/decoder.cpp
337 pv/data/decoderstack.cpp
338 pv/data/decode/annotation.cpp
339 pv/data/decode/decoder.cpp
340 pv/data/decode/row.cpp
341 pv/data/decode/rowdata.cpp
342 pv/views/trace/decodetrace.cpp
343 pv/widgets/decodergroupbox.cpp
344 pv/widgets/decodermenu.cpp
347 list(APPEND pulseview_HEADERS
348 pv/data/decoderstack.hpp
349 pv/views/trace/decodetrace.hpp
350 pv/widgets/decodergroupbox.hpp
351 pv/widgets/decodermenu.hpp
356 # Use the sigrok icon for the pulseview.exe executable.
357 set(CMAKE_RC_COMPILE_OBJECT "${CMAKE_RC_COMPILER} -O coff -I${CMAKE_CURRENT_SOURCE_DIR} <SOURCE> <OBJECT>")
359 list(APPEND pulseview_SOURCES pulseviewico.rc)
363 list(APPEND pulseview_SOURCES
364 android/assetreader.cpp
365 android/loghandler.cpp
369 qt5_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
371 #===============================================================================
372 #= Global Definitions
373 #-------------------------------------------------------------------------------
375 add_definitions(-DQT_NO_KEYWORDS)
376 add_definitions(-D__STDC_LIMIT_MACROS)
377 add_definitions(-Wall -Wextra)
378 add_definitions(-std=c++11)
379 add_definitions(-DBOOST_MATH_DISABLE_FLOAT128=1)
382 add_definitions(-DENABLE_DECODE)
385 if(NOT DISABLE_WERROR)
386 add_definitions(-Werror)
390 add_definitions(-DENABLE_SIGNALS)
393 #===============================================================================
394 #= Global Include Directories
395 #-------------------------------------------------------------------------------
398 ${CMAKE_CURRENT_BINARY_DIR}
399 ${CMAKE_CURRENT_SOURCE_DIR}
400 ${Boost_INCLUDE_DIRS}
403 if(STATIC_PKGDEPS_LIBS)
404 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
406 include_directories(${PKGDEPS_INCLUDE_DIRS})
409 #===============================================================================
410 #= Linker Configuration
411 #-------------------------------------------------------------------------------
413 link_directories(${Boost_LIBRARY_DIRS})
415 set(PULSEVIEW_LINK_LIBS
418 ${CMAKE_THREAD_LIBS_INIT}
422 if(STATIC_PKGDEPS_LIBS)
423 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
424 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LDFLAGS})
426 link_directories(${PKGDEPS_LIBRARY_DIRS})
427 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
431 # On Windows we need to statically link the libqsvg imageformat
432 # plugin (and the QtSvg component) for SVG graphics/icons to work.
433 # We also need QWindowsIntegrationPlugin, Qt5PlatformSupport, and all
434 # Qt libs and their dependencies.
435 add_definitions(-DQT_STATICPLUGIN)
436 list(APPEND PULSEVIEW_LINK_LIBS Qt5::QSvgPlugin)
437 list(APPEND PULSEVIEW_LINK_LIBS Qt5::QWindowsIntegrationPlugin)
438 list(APPEND PULSEVIEW_LINK_LIBS -lQt5PlatformSupport ${QT5ALL_LDFLAGS})
442 list(APPEND PULSEVIEW_LINK_LIBS "-llog")
446 add_library(${PROJECT_NAME} SHARED ${pulseview_SOURCES} ${pulseview_RESOURCES_RCC})
448 add_executable(${PROJECT_NAME} ${pulseview_SOURCES} ${pulseview_RESOURCES_RCC})
451 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
454 # Pass -mwindows so that no "DOS box" opens when PulseView is started.
455 set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
458 #===============================================================================
460 #-------------------------------------------------------------------------------
462 # Install the executable.
463 install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
465 # Install the manpage.
466 install(FILES doc/pulseview.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc)
468 # Install the desktop file.
469 install(FILES contrib/org.sigrok.PulseView.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
471 # Install the AppData/AppStream file.
472 install(FILES contrib/org.sigrok.PulseView.appdata.xml DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo)
474 # Generate Windows installer script.
475 configure_file(contrib/pulseview_cross.nsi.in contrib/pulseview_cross.nsi @ONLY)
477 #===============================================================================
478 #= Packaging (handled by CPack)
479 #-------------------------------------------------------------------------------
481 set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
482 set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
483 set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
484 set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
485 set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
486 set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
487 set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${PV_VERSION_STRING}")
488 set(CPACK_SOURCE_GENERATOR "TGZ")
492 #===============================================================================
494 #-------------------------------------------------------------------------------
497 add_subdirectory(test)
499 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)