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(FindPkgConfig)
24 include(GNUInstallDirs)
26 set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
31 #===============================================================================
33 #-------------------------------------------------------------------------------
35 option(DISABLE_WERROR "Build without -Werror" FALSE)
36 option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
37 option(ENABLE_TESTS "Enable unit tests" FALSE)
38 option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" 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 # Windsws does not support UNIX signals
50 set(ENABLE_SIGNALS FALSE)
53 #===============================================================================
55 #-------------------------------------------------------------------------------
59 libsigrokdecode>=0.2.0
62 find_package(PkgConfig)
63 pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS})
65 FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac)
66 find_package(Qt4 REQUIRED)
68 # Find the platform's thread library (needed for boost-thread).
69 # This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value.
73 # On Windows/MinGW the we need to use 'thread_win32' instead of 'thread'.
74 # The library is named libboost_thread_win32* (not libboost_thread*).
75 find_package(Boost 1.42 COMPONENTS system thread_win32 REQUIRED)
77 find_package(Boost 1.42 COMPONENTS system thread REQUIRED)
80 #===============================================================================
82 #-------------------------------------------------------------------------------
84 set(PV_TITLE PulseView)
85 set(PV_DESCRIPTION "A GUI for sigrok")
87 set(PV_VERSION_MAJOR 0)
88 set(PV_VERSION_MINOR 1)
89 set(PV_VERSION_MICRO 0)
91 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
95 ${PROJECT_SOURCE_DIR}/config.h.in
96 ${PROJECT_BINARY_DIR}/config.h
99 #===============================================================================
101 #-------------------------------------------------------------------------------
103 set(pulseview_SOURCES
109 pv/data/analogsnapshot.cpp
112 pv/data/logicsnapshot.cpp
113 pv/data/signaldata.cpp
116 pv/dialogs/connect.cpp
117 pv/dialogs/decoder.cpp
118 pv/popups/deviceoptions.cpp
126 pv/prop/binding/binding.cpp
127 pv/prop/binding/decoderoptions.cpp
128 pv/prop/binding/deviceoptions.cpp
129 pv/toolbars/samplingbar.cpp
130 pv/view/analogsignal.cpp
132 pv/view/cursorpair.cpp
133 pv/view/decodesignal.cpp
135 pv/view/marginwidget.cpp
136 pv/view/logicsignal.cpp
138 pv/view/selectableitem.cpp
140 pv/view/timemarker.cpp
142 pv/view/tracepalette.cpp
145 pv/view/decode/annotation.cpp
146 pv/widgets/colourbutton.cpp
147 pv/widgets/colourpopup.cpp
149 pv/widgets/popuptoolbutton.cpp
150 pv/widgets/wellarray.cpp
153 # This list includes only QObject derrived class headers
154 set(pulseview_HEADERS
160 pv/popups/deviceoptions.h
162 pv/toolbars/samplingbar.h
164 pv/view/decodesignal.h
166 pv/view/logicsignal.h
167 pv/view/marginwidget.h
169 pv/view/selectableitem.h
175 pv/widgets/colourbutton.h
176 pv/widgets/colourpopup.h
177 pv/widgets/popuptoolbutton.h
178 pv/widgets/wellarray.h
185 set(pulseview_RESOURCES
190 list(APPEND pulseview_SOURCES signalhandler.cpp)
191 list(APPEND pulseview_HEADERS signalhandler.h)
194 qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
195 qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
196 qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
198 include(${QT_USE_FILE})
200 #===============================================================================
201 #= Global Definitions
202 #-------------------------------------------------------------------------------
204 add_definitions(${QT_DEFINITIONS})
205 add_definitions(-Wall -Wextra)
207 if(NOT DISABLE_WERROR)
208 add_definitions(-Werror)
211 #===============================================================================
212 #= Global Include Directories
213 #-------------------------------------------------------------------------------
216 ${CMAKE_CURRENT_BINARY_DIR}
217 ${CMAKE_CURRENT_SOURCE_DIR}
218 ${Boost_INCLUDE_DIRS}
221 if(STATIC_PKGDEPS_LIBS)
222 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
224 include_directories(${PKGDEPS_INCLUDE_DIRS})
227 #===============================================================================
228 #= Linker Configuration
229 #-------------------------------------------------------------------------------
231 link_directories(${Boost_LIBRARY_DIRS})
233 set(PULSEVIEW_LINK_LIBS
235 ${CMAKE_THREAD_LIBS_INIT}
239 if(STATIC_PKGDEPS_LIBS)
240 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
241 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
243 link_directories(${PKGDEPS_LIBRARY_DIRS})
244 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
247 add_executable(${PROJECT_NAME}
249 ${pulseview_HEADERS_MOC}
250 ${pulseview_FORMS_HEADERS}
251 ${pulseview_RESOURCES_RCC}
254 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
255 cotire(${PROJECT_NAME})
258 # Pass -mwindows so that no "DOS box" will open when PulseView is started.
259 set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
262 #===============================================================================
264 #-------------------------------------------------------------------------------
266 # Install the executable.
267 install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
269 # Install the manpage.
270 install(FILES doc/pulseview.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc)
272 #===============================================================================
273 #= Packaging (handled by CPack)
274 #-------------------------------------------------------------------------------
276 set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
277 set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
278 set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
279 set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
280 set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
281 set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
282 set(CPACK_SOURCE_PACKAGE_FILE_NAME
283 "${CMAKE_PROJECT_NAME}-${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}")
284 set(CPACK_SOURCE_GENERATOR "TGZ")
288 #===============================================================================
290 #-------------------------------------------------------------------------------
293 add_subdirectory(test)
295 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)