]> sigrok.org Git - pulseview.git/blame_incremental - CMakeLists.txt
Added AwaitTrigger capture state
[pulseview.git] / CMakeLists.txt
... / ...
CommitLineData
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##
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.
11##
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.
16##
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/>.
19##
20
21cmake_minimum_required(VERSION 2.6)
22include(FindPkgConfig)
23include(GNUInstallDirs)
24
25project(pulseview)
26
27#===============================================================================
28#= User Options
29#-------------------------------------------------------------------------------
30
31option(DISABLE_WERROR "Build without -Werror" FALSE)
32option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
33option(ENABLE_SIGROKDECODE "Build with libsigrokdecode" FALSE)
34option(ENABLE_TESTS "Enable unit tests" FALSE)
35option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
36
37if(WIN32)
38 # On Windows/MinGW we need to statically link to libraries.
39 # This option is user configurable, but enable it by default on win32.
40 set(STATIC_PKGDEPS_LIBS TRUE)
41
42 # For boost-thread we need two additional settings on win32:
43 set(Boost_USE_STATIC_LIBS on)
44 add_definitions(-DBOOST_THREAD_USE_LIB)
45
46 # Windsws does not support UNIX signals
47 set(ENABLE_SIGNALS FALSE)
48endif()
49
50#===============================================================================
51#= Dependencies
52#-------------------------------------------------------------------------------
53
54list(APPEND PKGDEPS
55 libsigrok>=0.2.0
56)
57
58if(ENABLE_SIGROKDECODE)
59 list(APPEND PKGDEPS libsigrokdecode>=0.2.0)
60endif()
61
62find_package(PkgConfig)
63pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS})
64
65FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac)
66find_package(Qt4 REQUIRED)
67
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.
70find_package(Threads)
71
72if(WIN32)
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*).
75find_package(Boost 1.42 COMPONENTS system thread_win32 REQUIRED)
76else()
77find_package(Boost 1.42 COMPONENTS system thread REQUIRED)
78endif()
79
80#===============================================================================
81#= Config Header
82#-------------------------------------------------------------------------------
83
84set(PV_TITLE PulseView)
85set(PV_DESCRIPTION "A GUI for sigrok")
86
87set(PV_VERSION_MAJOR 0)
88set(PV_VERSION_MINOR 1)
89set(PV_VERSION_MICRO 0)
90set(PV_VERSION_STRING
91 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
92)
93
94configure_file (
95 ${PROJECT_SOURCE_DIR}/config.h.in
96 ${PROJECT_BINARY_DIR}/config.h
97)
98
99#===============================================================================
100#= Sources
101#-------------------------------------------------------------------------------
102
103set(pulseview_SOURCES
104 main.cpp
105 pv/devicemanager.cpp
106 pv/mainwindow.cpp
107 pv/sigsession.cpp
108 pv/data/analog.cpp
109 pv/data/analogsnapshot.cpp
110 pv/data/logic.cpp
111 pv/data/logicsnapshot.cpp
112 pv/data/signaldata.cpp
113 pv/data/snapshot.cpp
114 pv/dialogs/about.cpp
115 pv/dialogs/connect.cpp
116 pv/dialogs/deviceoptions.cpp
117 pv/prop/bool.cpp
118 pv/prop/double.cpp
119 pv/prop/enum.cpp
120 pv/prop/int.cpp
121 pv/prop/property.cpp
122 pv/prop/binding/binding.cpp
123 pv/prop/binding/deviceoptions.cpp
124 pv/toolbars/contextbar.cpp
125 pv/toolbars/samplingbar.cpp
126 pv/view/analogsignal.cpp
127 pv/view/cursor.cpp
128 pv/view/cursorpair.cpp
129 pv/view/header.cpp
130 pv/view/marginwidget.cpp
131 pv/view/logicsignal.cpp
132 pv/view/ruler.cpp
133 pv/view/selectableitem.cpp
134 pv/view/signal.cpp
135 pv/view/timemarker.cpp
136 pv/view/view.cpp
137 pv/view/viewport.cpp
138)
139
140set(pulseview_HEADERS
141 pv/mainwindow.h
142 pv/sigsession.h
143 pv/dialogs/about.h
144 pv/dialogs/connect.h
145 pv/dialogs/deviceoptions.h
146 pv/toolbars/contextbar.h
147 pv/toolbars/samplingbar.h
148 pv/view/cursor.h
149 pv/view/header.h
150 pv/view/logicsignal.h
151 pv/view/marginwidget.h
152 pv/view/ruler.h
153 pv/view/selectableitem.h
154 pv/view/signal.h
155 pv/view/timemarker.h
156 pv/view/view.h
157 pv/view/viewport.h
158)
159
160set(pulseview_FORMS
161 pv/dialogs/about.ui
162)
163
164set(pulseview_RESOURCES
165 pulseview.qrc
166)
167
168if(ENABLE_SIGNALS)
169 list(APPEND pulseview_SOURCES signalhandler.cpp)
170 list(APPEND pulseview_HEADERS signalhandler.h)
171endif()
172
173qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
174qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
175qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
176
177include(${QT_USE_FILE})
178
179#===============================================================================
180#= Global Definitions
181#-------------------------------------------------------------------------------
182
183add_definitions(${QT_DEFINITIONS})
184add_definitions(-Wall -Wextra)
185
186if(ENABLE_SIGROKDECODE)
187 add_definitions(-DENABLE_SIGROKDECODE)
188endif()
189
190if(NOT DISABLE_WERROR)
191 add_definitions(-Werror)
192endif()
193
194#===============================================================================
195#= Global Include Directories
196#-------------------------------------------------------------------------------
197
198include_directories(
199 ${CMAKE_CURRENT_BINARY_DIR}
200 ${CMAKE_CURRENT_SOURCE_DIR}
201 ${Boost_INCLUDE_DIRS}
202)
203
204if(STATIC_PKGDEPS_LIBS)
205 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
206else()
207 include_directories(${PKGDEPS_INCLUDE_DIRS})
208endif()
209
210#===============================================================================
211#= Linker Configuration
212#-------------------------------------------------------------------------------
213
214link_directories(${Boost_LIBRARY_DIRS})
215
216set(PULSEVIEW_LINK_LIBS
217 ${Boost_LIBRARIES}
218 ${CMAKE_THREAD_LIBS_INIT}
219 ${QT_LIBRARIES}
220)
221
222if(STATIC_PKGDEPS_LIBS)
223 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
224 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
225else()
226 link_directories(${PKGDEPS_LIBRARY_DIRS})
227 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
228endif()
229
230add_executable(${PROJECT_NAME}
231 ${pulseview_SOURCES}
232 ${pulseview_HEADERS_MOC}
233 ${pulseview_FORMS_HEADERS}
234 ${pulseview_RESOURCES_RCC}
235)
236
237target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
238
239if(WIN32)
240# Pass -mwindows so that no "DOS box" will open when PulseView is started.
241set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
242endif()
243
244#===============================================================================
245#= Installation
246#-------------------------------------------------------------------------------
247
248# Install the executable.
249install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
250
251# Install the manpage.
252install(FILES doc/pulseview.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc)
253
254#===============================================================================
255#= Packaging (handled by CPack)
256#-------------------------------------------------------------------------------
257
258set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
259set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
260set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
261set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
262set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
263set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
264set(CPACK_SOURCE_PACKAGE_FILE_NAME
265 "${CMAKE_PROJECT_NAME}-${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}")
266set(CPACK_SOURCE_GENERATOR "TGZ")
267
268include(CPack)
269
270#===============================================================================
271#= Tests
272#-------------------------------------------------------------------------------
273
274if(ENABLE_TESTS)
275 add_subdirectory(test)
276 enable_testing()
277 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
278endif(ENABLE_TESTS)