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