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