]> sigrok.org Git - pulseview.git/blame_incremental - CMakeLists.txt
Add a way to generate a tarball without requiring git
[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 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)
38endif()
39
40#===============================================================================
41#= Dependencies
42#-------------------------------------------------------------------------------
43
44find_package(PkgConfig)
45pkg_check_modules(PKGDEPS REQUIRED
46 libsigrokdecode>=0.1.0
47 libsigrok>=0.2.0
48)
49
50find_package(Qt4 REQUIRED)
51
52# On Windows/MinGW we explicitly point cmake to the Boost directory.
53if(WIN32)
54 set(BOOST_ROOT /usr/local)
55endif()
56
57if(WIN32)
58# On Windows/MinGW the we need to use 'thread_win32' instead of 'thread'.
59# The library is named libboost_thread_win32* (not libboost_thread*).
60find_package(Boost 1.45 COMPONENTS system thread_win32)
61else()
62find_package(Boost 1.45 COMPONENTS system thread)
63endif()
64
65#===============================================================================
66#= Config Header
67#-------------------------------------------------------------------------------
68
69set(PV_TITLE PulseView)
70set(PV_DESCRIPTION "A GUI for sigrok")
71
72set(PV_VERSION_MAJOR 0)
73set(PV_VERSION_MINOR 1)
74set(PV_VERSION_MICRO 0)
75set(PV_VERSION_STRING
76 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
77)
78
79configure_file (
80 ${PROJECT_SOURCE_DIR}/config.h.in
81 ${PROJECT_BINARY_DIR}/config.h
82)
83
84#===============================================================================
85#= Sources
86#-------------------------------------------------------------------------------
87
88set(pulseview_SOURCES
89 main.cpp
90 pv/mainwindow.cpp
91 pv/samplingbar.cpp
92 pv/sigsession.cpp
93 pv/data/analog.cpp
94 pv/data/analogsnapshot.cpp
95 pv/data/logic.cpp
96 pv/data/logicsnapshot.cpp
97 pv/data/signaldata.cpp
98 pv/data/snapshot.cpp
99 pv/dialogs/about.cpp
100 pv/dialogs/hwcap.cpp
101 pv/prop/enum.cpp
102 pv/prop/property.cpp
103 pv/prop/binding/binding.cpp
104 pv/prop/binding/hwcap.cpp
105 pv/view/analogsignal.cpp
106 pv/view/cursor.cpp
107 pv/view/header.cpp
108 pv/view/logicsignal.cpp
109 pv/view/ruler.cpp
110 pv/view/signal.cpp
111 pv/view/timemarker.cpp
112 pv/view/view.cpp
113 pv/view/viewport.cpp
114)
115
116set(pulseview_HEADERS
117 pv/mainwindow.h
118 pv/samplingbar.h
119 pv/sigsession.h
120 pv/dialogs/about.h
121 pv/view/cursor.h
122 pv/view/header.h
123 pv/view/ruler.h
124 pv/view/timemarker.h
125 pv/view/view.h
126 pv/view/viewport.h
127)
128
129set(pulseview_FORMS
130 pv/dialogs/about.ui
131)
132
133set(pulseview_RESOURCES
134 pulseview.qrc
135)
136
137qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
138qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
139qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
140
141include(${QT_USE_FILE})
142
143#===============================================================================
144#= Global Definitions
145#-------------------------------------------------------------------------------
146
147add_definitions(${QT_DEFINITIONS})
148add_definitions(-Wextra)
149
150if(NOT DISABLE_WERROR)
151 add_definitions(-Werror)
152endif()
153
154#===============================================================================
155#= Global Include Directories
156#-------------------------------------------------------------------------------
157
158include_directories(
159 ${CMAKE_CURRENT_BINARY_DIR}
160 ${CMAKE_CURRENT_SOURCE_DIR}
161 ${Boost_INCLUDE_DIRS}
162)
163
164if(STATIC_PKGDEPS_LIBS)
165 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
166else()
167 include_directories(${PKGDEPS_INCLUDE_DIRS})
168endif()
169
170#===============================================================================
171#= Linker Configuration
172#-------------------------------------------------------------------------------
173
174link_directories(${Boost_LIBRARY_DIRS})
175
176set(PULSEVIEW_LINK_LIBS
177 ${Boost_LIBRARIES}
178 ${QT_LIBRARIES}
179)
180
181if(STATIC_PKGDEPS_LIBS)
182 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
183 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
184else()
185 link_directories(${PKGDEPS_LIBRARY_DIRS})
186 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
187endif()
188
189add_executable(${PROJECT_NAME}
190 ${pulseview_SOURCES}
191 ${pulseview_HEADERS_MOC}
192 ${pulseview_FORMS_HEADERS}
193 ${pulseview_RESOURCES_RCC}
194)
195
196target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
197
198#===============================================================================
199#= Installation
200#-------------------------------------------------------------------------------
201
202install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
203
204#===============================================================================
205#= Packaging (handled by CPack)
206#-------------------------------------------------------------------------------
207
208set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
209set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
210set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
211
212include(CPack)
213
214#===============================================================================
215#= Tests
216#-------------------------------------------------------------------------------
217
218if(ENABLE_TESTS)
219 add_subdirectory(test)
220 enable_testing()
221 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
222endif(ENABLE_TESTS)