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.6)
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)
38 option(FORCE_QT4 "Force use of Qt4 even if Qt5 is available" FALSE)
41 # On Windows/MinGW we need to statically link to libraries.
42 # This option is user configurable, but enable it by default on win32.
43 set(STATIC_PKGDEPS_LIBS TRUE)
45 # For boost-thread we need two additional settings on win32:
46 set(Boost_USE_STATIC_LIBS ON)
47 add_definitions(-DBOOST_THREAD_USE_LIB)
49 # On Windows/MinGW we need to use 'thread_win32' instead of 'thread'.
50 # The library is named libboost_thread_win32* (not libboost_thread*).
51 set(Boost_THREADAPI win32)
53 # Windows does not support UNIX signals.
54 set(ENABLE_SIGNALS FALSE)
57 if(NOT CMAKE_BUILD_TYPE)
58 set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
59 "Choose the type of build (None, Debug, Release, RelWithDebInfo, MinSizeRel)."
63 #===============================================================================
65 #-------------------------------------------------------------------------------
67 list(APPEND PKGDEPS libsigrokcxx>=0.4.0)
70 list(APPEND PKGDEPS libsigrokdecode>=0.4.0)
74 list(APPEND PKGDEPS libsigrokandroidutils>=0.1.0)
77 find_package(PkgConfig)
78 pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS})
81 set(Qt5Core_FOUND FALSE)
83 find_package(Qt5Core QUIET)
87 message("-- Using Qt5")
88 find_package(Qt5Widgets REQUIRED)
89 find_package(Qt5Gui REQUIRED)
90 find_package(Qt5Svg REQUIRED)
91 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
92 set(QT_INCLUDE_DIRS ${Qt5Gui_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS})
93 set(QT_LIBRARIES Qt5::Gui Qt5::Widgets Qt5::Svg)
94 add_definitions(${Qt5Gui_DEFINITIONS} ${Qt5Widgets_DEFINITIONS})
96 find_program(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac)
97 find_package(Qt4 REQUIRED QtCore QtGui QtSvg)
101 find_package(Boost 1.53 COMPONENTS filesystem system thread unit_test_framework REQUIRED)
103 find_package(Boost 1.53 COMPONENTS filesystem system thread REQUIRED)
106 # Find the platform's thread library (needed for C++11 threads).
107 # This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value.
108 find_package(Threads REQUIRED)
110 #===============================================================================
111 #= System Introspection
112 #-------------------------------------------------------------------------------
115 memaccess_check_unaligned_le(HAVE_UNALIGNED_LITTLE_ENDIAN_ACCESS)
117 #===============================================================================
119 #-------------------------------------------------------------------------------
121 set(PV_TITLE PulseView)
122 set(PV_DESCRIPTION "A GUI for sigrok")
123 set(PV_VERSION_STRING "0.4.0")
125 include(GetGitRevisionDescription)
127 # Append the revision hash unless we are exactly on a tagged release.
128 git_describe(PV_TAG_VERSION_STRING --match "pulseview-${PV_VERSION_STRING}" --exact-match)
129 if(NOT PV_TAG_VERSION_STRING)
130 get_git_head_revision(PV_REVSPEC PV_HASH)
132 string(SUBSTRING "${PV_HASH}" 0 7 PV_SHORTHASH)
133 set(PV_VERSION_STRING "${PV_VERSION_STRING}-git-${PV_SHORTHASH}")
137 if(PV_VERSION_STRING MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)(-[-0-9a-z]*)?$")
138 set(PV_VERSION_MAJOR ${CMAKE_MATCH_1})
139 set(PV_VERSION_MINOR ${CMAKE_MATCH_2})
140 set(PV_VERSION_MICRO ${CMAKE_MATCH_3})
141 set(PV_VERSION_SUFFIX ${CMAKE_MATCH_4})
144 message("-- ${PV_TITLE} version: ${PV_VERSION_STRING}")
147 ${PROJECT_SOURCE_DIR}/config.h.in
148 ${PROJECT_BINARY_DIR}/config.h
151 #===============================================================================
153 #-------------------------------------------------------------------------------
155 set(pulseview_SOURCES
163 pv/binding/binding.cpp
164 pv/binding/inputoutput.cpp
165 pv/binding/device.cpp
167 pv/data/analogsegment.cpp
169 pv/data/logicsegment.cpp
170 pv/data/signaldata.cpp
172 pv/devices/device.cpp
174 pv/devices/hardwaredevice.cpp
175 pv/devices/inputfile.cpp
176 pv/devices/sessionfile.cpp
178 pv/dialogs/connect.cpp
179 pv/dialogs/inputoutputoptions.cpp
180 pv/dialogs/storeprogress.cpp
181 pv/popups/deviceoptions.cpp
182 pv/popups/channels.cpp
189 pv/toolbars/mainbar.cpp
190 pv/view/analogsignal.cpp
192 pv/view/cursorpair.cpp
195 pv/view/marginwidget.cpp
196 pv/view/logicsignal.cpp
200 pv/view/signalscalehandle.cpp
202 pv/view/timemarker.cpp
204 pv/view/tracegroup.cpp
205 pv/view/tracepalette.cpp
206 pv/view/tracetreeitem.cpp
207 pv/view/tracetreeitemowner.cpp
208 pv/view/triggermarker.cpp
211 pv/view/viewitemowner.cpp
212 pv/view/viewitempaintparams.cpp
214 pv/view/viewwidget.cpp
215 pv/widgets/colourbutton.cpp
216 pv/widgets/colourpopup.cpp
217 pv/widgets/devicetoolbutton.cpp
218 pv/widgets/exportmenu.cpp
219 pv/widgets/hidingmenubar.cpp
220 pv/widgets/importmenu.cpp
222 pv/widgets/popuptoolbutton.cpp
223 pv/widgets/sweeptimingwidget.cpp
224 pv/widgets/timestampspinbox.cpp
225 pv/widgets/wellarray.cpp
228 # This list includes only QObject derived class headers.
229 set(pulseview_HEADERS
233 pv/binding/device.hpp
235 pv/dialogs/connect.hpp
236 pv/dialogs/inputoutputoptions.hpp
237 pv/dialogs/storeprogress.hpp
238 pv/popups/channels.hpp
239 pv/popups/deviceoptions.hpp
246 pv/toolbars/mainbar.hpp
250 pv/view/logicsignal.hpp
251 pv/view/marginwidget.hpp
255 pv/view/signalscalehandle.hpp
257 pv/view/timemarker.hpp
259 pv/view/tracegroup.hpp
260 pv/view/tracetreeitem.hpp
261 pv/view/triggermarker.hpp
265 pv/view/viewwidget.hpp
266 pv/widgets/colourbutton.hpp
267 pv/widgets/colourpopup.hpp
268 pv/widgets/devicetoolbutton.hpp
269 pv/widgets/exportmenu.hpp
270 pv/widgets/hidingmenubar.hpp
271 pv/widgets/importmenu.hpp
273 pv/widgets/popuptoolbutton.hpp
274 pv/widgets/sweeptimingwidget.hpp
275 pv/widgets/timestampspinbox.hpp
276 pv/widgets/wellarray.hpp
283 set(pulseview_RESOURCES
288 list(APPEND pulseview_SOURCES signalhandler.cpp)
289 list(APPEND pulseview_HEADERS signalhandler.hpp)
293 list(APPEND pulseview_SOURCES
294 pv/binding/decoder.cpp
295 pv/data/decoderstack.cpp
296 pv/data/decode/annotation.cpp
297 pv/data/decode/decoder.cpp
298 pv/data/decode/row.cpp
299 pv/data/decode/rowdata.cpp
300 pv/view/decodetrace.cpp
301 pv/widgets/decodergroupbox.cpp
302 pv/widgets/decodermenu.cpp
305 list(APPEND pulseview_HEADERS
306 pv/data/decoderstack.hpp
307 pv/view/decodetrace.hpp
308 pv/widgets/decodergroupbox.hpp
309 pv/widgets/decodermenu.hpp
314 # Use the sigrok icon for the pulseview.exe executable.
315 set(CMAKE_RC_COMPILE_OBJECT "${CMAKE_RC_COMPILER} -O coff -I${CMAKE_CURRENT_SOURCE_DIR} <SOURCE> <OBJECT>")
317 list(APPEND pulseview_SOURCES pulseviewico.rc)
321 list(APPEND pulseview_SOURCES
322 android/assetreader.cpp
323 android/loghandler.cpp
328 qt5_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
329 qt5_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
330 qt5_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
332 # Workaround for QTBUG-22829: -DBOOST_NEXT_PRIOR_HPP_INCLUDED.
333 # https://bugreports.qt.io/browse/QTBUG-22829
334 qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS}
335 OPTIONS -DBOOST_NEXT_PRIOR_HPP_INCLUDED)
336 qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
337 qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
338 include(${QT_USE_FILE})
341 #===============================================================================
342 #= Global Definitions
343 #-------------------------------------------------------------------------------
345 add_definitions(${QT_DEFINITIONS} -DQT_NO_KEYWORDS)
346 add_definitions(-D__STDC_LIMIT_MACROS)
347 add_definitions(-Wall -Wextra)
348 add_definitions(-std=c++11)
351 add_definitions(-DENABLE_DECODE)
354 if(NOT DISABLE_WERROR)
355 add_definitions(-Werror)
359 add_definitions(-DENABLE_SIGNALS)
362 #===============================================================================
363 #= Global Include Directories
364 #-------------------------------------------------------------------------------
367 ${CMAKE_CURRENT_BINARY_DIR}
368 ${CMAKE_CURRENT_SOURCE_DIR}
369 ${Boost_INCLUDE_DIRS}
373 if(STATIC_PKGDEPS_LIBS)
374 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
376 include_directories(${PKGDEPS_INCLUDE_DIRS})
379 #===============================================================================
380 #= Linker Configuration
381 #-------------------------------------------------------------------------------
383 link_directories(${Boost_LIBRARY_DIRS})
385 set(PULSEVIEW_LINK_LIBS
388 ${CMAKE_THREAD_LIBS_INIT}
391 if(STATIC_PKGDEPS_LIBS)
392 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
393 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
395 # Workaround for a MinGW linking issue.
396 list(APPEND PULSEVIEW_LINK_LIBS "-llzma -llcms2")
399 link_directories(${PKGDEPS_LIBRARY_DIRS})
400 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
404 # On Windows we need to statically link the libqsvg imageformat
405 # plugin (and the QtSvg component) for SVG graphics/icons to work.
406 add_definitions(-DQT_STATICPLUGIN)
407 link_directories("${QT_PLUGINS_DIR}/imageformats")
408 list(APPEND PULSEVIEW_LINK_LIBS "-lqsvg")
409 list(APPEND PULSEVIEW_LINK_LIBS ${QT_QTSVG_LIBRARY})
413 list(APPEND PULSEVIEW_LINK_LIBS "-llog")
417 add_library(${PROJECT_NAME} SHARED
419 ${pulseview_HEADERS_MOC}
420 ${pulseview_FORMS_HEADERS}
421 ${pulseview_RESOURCES_RCC}
424 add_executable(${PROJECT_NAME}
426 ${pulseview_HEADERS_MOC}
427 ${pulseview_FORMS_HEADERS}
428 ${pulseview_RESOURCES_RCC}
432 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
435 # Pass -mwindows so that no "DOS box" opens when PulseView is started.
436 set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
439 #===============================================================================
441 #-------------------------------------------------------------------------------
443 # Install the executable.
444 install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
446 # Install the manpage.
447 install(FILES doc/pulseview.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc)
449 # Generate Windows installer script.
450 configure_file(contrib/pulseview_cross.nsi.in contrib/pulseview_cross.nsi @ONLY)
452 #===============================================================================
453 #= Packaging (handled by CPack)
454 #-------------------------------------------------------------------------------
456 set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
457 set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
458 set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
459 set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
460 set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
461 set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
462 set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${PV_VERSION_STRING}")
463 set(CPACK_SOURCE_GENERATOR "TGZ")
467 #===============================================================================
469 #-------------------------------------------------------------------------------
472 add_subdirectory(test)
474 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)