]> sigrok.org Git - pulseview.git/blame_incremental - CMakeLists.txt
Added decoders list
[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.8.6)
22
23include(FindPkgConfig)
24include(GNUInstallDirs)
25
26set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
27include(cotire)
28
29project(pulseview)
30
31#===============================================================================
32#= User Options
33#-------------------------------------------------------------------------------
34
35option(DISABLE_WERROR "Build without -Werror" FALSE)
36option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
37option(ENABLE_TESTS "Enable unit tests" FALSE)
38option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
39
40if(WIN32)
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)
44
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)
48
49 # Windsws does not support UNIX signals
50 set(ENABLE_SIGNALS FALSE)
51endif()
52
53#===============================================================================
54#= Dependencies
55#-------------------------------------------------------------------------------
56
57list(APPEND PKGDEPS
58 libsigrok>=0.2.0
59 libsigrokdecode>=0.2.0
60)
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/trace.cpp
137 pv/view/view.cpp
138 pv/view/viewport.cpp
139)
140
141# This list includes only QObject derrived class headers
142set(pulseview_HEADERS
143 pv/mainwindow.h
144 pv/sigsession.h
145 pv/dialogs/about.h
146 pv/dialogs/connect.h
147 pv/dialogs/deviceoptions.h
148 pv/toolbars/contextbar.h
149 pv/toolbars/samplingbar.h
150 pv/view/cursor.h
151 pv/view/header.h
152 pv/view/logicsignal.h
153 pv/view/marginwidget.h
154 pv/view/ruler.h
155 pv/view/selectableitem.h
156 pv/view/signal.h
157 pv/view/timemarker.h
158 pv/view/trace.h
159 pv/view/view.h
160 pv/view/viewport.h
161)
162
163set(pulseview_FORMS
164 pv/dialogs/about.ui
165)
166
167set(pulseview_RESOURCES
168 pulseview.qrc
169)
170
171if(ENABLE_SIGNALS)
172 list(APPEND pulseview_SOURCES signalhandler.cpp)
173 list(APPEND pulseview_HEADERS signalhandler.h)
174endif()
175
176qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
177qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
178qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
179
180include(${QT_USE_FILE})
181
182#===============================================================================
183#= Global Definitions
184#-------------------------------------------------------------------------------
185
186add_definitions(${QT_DEFINITIONS})
187add_definitions(-Wall -Wextra)
188
189if(NOT DISABLE_WERROR)
190 add_definitions(-Werror)
191endif()
192
193#===============================================================================
194#= Global Include Directories
195#-------------------------------------------------------------------------------
196
197include_directories(
198 ${CMAKE_CURRENT_BINARY_DIR}
199 ${CMAKE_CURRENT_SOURCE_DIR}
200 ${Boost_INCLUDE_DIRS}
201)
202
203if(STATIC_PKGDEPS_LIBS)
204 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
205else()
206 include_directories(${PKGDEPS_INCLUDE_DIRS})
207endif()
208
209#===============================================================================
210#= Linker Configuration
211#-------------------------------------------------------------------------------
212
213link_directories(${Boost_LIBRARY_DIRS})
214
215set(PULSEVIEW_LINK_LIBS
216 ${Boost_LIBRARIES}
217 ${CMAKE_THREAD_LIBS_INIT}
218 ${QT_LIBRARIES}
219)
220
221if(STATIC_PKGDEPS_LIBS)
222 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
223 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
224else()
225 link_directories(${PKGDEPS_LIBRARY_DIRS})
226 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
227endif()
228
229add_executable(${PROJECT_NAME}
230 ${pulseview_SOURCES}
231 ${pulseview_HEADERS_MOC}
232 ${pulseview_FORMS_HEADERS}
233 ${pulseview_RESOURCES_RCC}
234)
235
236target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
237cotire(${PROJECT_NAME})
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)