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