]> sigrok.org Git - pulseview.git/blame_incremental - CMakeLists.txt
Added empty context bar
[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_package(Qt4 REQUIRED)
66
67# Find the platform's thread library (needed for boost-thread).
68# This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value.
69find_package(Threads)
70
71if(WIN32)
72# On Windows/MinGW the we need to use 'thread_win32' instead of 'thread'.
73# The library is named libboost_thread_win32* (not libboost_thread*).
74find_package(Boost 1.42 COMPONENTS system thread_win32 REQUIRED)
75else()
76find_package(Boost 1.42 COMPONENTS system thread REQUIRED)
77endif()
78
79#===============================================================================
80#= Config Header
81#-------------------------------------------------------------------------------
82
83set(PV_TITLE PulseView)
84set(PV_DESCRIPTION "A GUI for sigrok")
85
86set(PV_VERSION_MAJOR 0)
87set(PV_VERSION_MINOR 1)
88set(PV_VERSION_MICRO 0)
89set(PV_VERSION_STRING
90 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
91)
92
93configure_file (
94 ${PROJECT_SOURCE_DIR}/config.h.in
95 ${PROJECT_BINARY_DIR}/config.h
96)
97
98#===============================================================================
99#= Sources
100#-------------------------------------------------------------------------------
101
102set(pulseview_SOURCES
103 main.cpp
104 pv/devicemanager.cpp
105 pv/mainwindow.cpp
106 pv/sigsession.cpp
107 pv/data/analog.cpp
108 pv/data/analogsnapshot.cpp
109 pv/data/logic.cpp
110 pv/data/logicsnapshot.cpp
111 pv/data/signaldata.cpp
112 pv/data/snapshot.cpp
113 pv/dialogs/about.cpp
114 pv/dialogs/connect.cpp
115 pv/dialogs/deviceoptions.cpp
116 pv/prop/bool.cpp
117 pv/prop/double.cpp
118 pv/prop/enum.cpp
119 pv/prop/int.cpp
120 pv/prop/property.cpp
121 pv/prop/binding/binding.cpp
122 pv/prop/binding/deviceoptions.cpp
123 pv/toolbars/contextbar.cpp
124 pv/toolbars/samplingbar.cpp
125 pv/view/analogsignal.cpp
126 pv/view/cursor.cpp
127 pv/view/cursorpair.cpp
128 pv/view/header.cpp
129 pv/view/logicsignal.cpp
130 pv/view/ruler.cpp
131 pv/view/signal.cpp
132 pv/view/timemarker.cpp
133 pv/view/view.cpp
134 pv/view/viewport.cpp
135)
136
137set(pulseview_HEADERS
138 pv/mainwindow.h
139 pv/sigsession.h
140 pv/dialogs/about.h
141 pv/dialogs/connect.h
142 pv/dialogs/deviceoptions.h
143 pv/toolbars/contextbar.h
144 pv/toolbars/samplingbar.h
145 pv/view/cursor.h
146 pv/view/header.h
147 pv/view/ruler.h
148 pv/view/timemarker.h
149 pv/view/view.h
150 pv/view/viewport.h
151)
152
153set(pulseview_FORMS
154 pv/dialogs/about.ui
155)
156
157set(pulseview_RESOURCES
158 pulseview.qrc
159)
160
161if(ENABLE_SIGNALS)
162 list(APPEND pulseview_SOURCES signalhandler.cpp)
163 list(APPEND pulseview_HEADERS signalhandler.h)
164endif()
165
166qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
167qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
168qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
169
170include(${QT_USE_FILE})
171
172#===============================================================================
173#= Global Definitions
174#-------------------------------------------------------------------------------
175
176add_definitions(${QT_DEFINITIONS})
177add_definitions(-Wall -Wextra)
178
179if(ENABLE_SIGROKDECODE)
180 add_definitions(-DENABLE_SIGROKDECODE)
181endif()
182
183if(NOT DISABLE_WERROR)
184 add_definitions(-Werror)
185endif()
186
187#===============================================================================
188#= Global Include Directories
189#-------------------------------------------------------------------------------
190
191include_directories(
192 ${CMAKE_CURRENT_BINARY_DIR}
193 ${CMAKE_CURRENT_SOURCE_DIR}
194 ${Boost_INCLUDE_DIRS}
195)
196
197if(STATIC_PKGDEPS_LIBS)
198 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
199else()
200 include_directories(${PKGDEPS_INCLUDE_DIRS})
201endif()
202
203#===============================================================================
204#= Linker Configuration
205#-------------------------------------------------------------------------------
206
207link_directories(${Boost_LIBRARY_DIRS})
208
209set(PULSEVIEW_LINK_LIBS
210 ${Boost_LIBRARIES}
211 ${CMAKE_THREAD_LIBS_INIT}
212 ${QT_LIBRARIES}
213)
214
215if(STATIC_PKGDEPS_LIBS)
216 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
217 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
218else()
219 link_directories(${PKGDEPS_LIBRARY_DIRS})
220 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
221endif()
222
223add_executable(${PROJECT_NAME}
224 ${pulseview_SOURCES}
225 ${pulseview_HEADERS_MOC}
226 ${pulseview_FORMS_HEADERS}
227 ${pulseview_RESOURCES_RCC}
228)
229
230target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
231
232if(WIN32)
233# Pass -mwindows so that no "DOS box" will open when PulseView is started.
234set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
235endif()
236
237#===============================================================================
238#= Installation
239#-------------------------------------------------------------------------------
240
241# Install the executable.
242install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
243
244# Install the manpage.
245install(FILES doc/pulseview.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT doc)
246
247#===============================================================================
248#= Packaging (handled by CPack)
249#-------------------------------------------------------------------------------
250
251set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
252set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
253set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
254set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
255set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
256set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
257set(CPACK_SOURCE_PACKAGE_FILE_NAME
258 "${CMAKE_PROJECT_NAME}-${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}")
259set(CPACK_SOURCE_GENERATOR "TGZ")
260
261include(CPack)
262
263#===============================================================================
264#= Tests
265#-------------------------------------------------------------------------------
266
267if(ENABLE_TESTS)
268 add_subdirectory(test)
269 enable_testing()
270 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
271endif(ENABLE_TESTS)