]> sigrok.org Git - pulseview.git/blame_incremental - CMakeLists.txt
global: Do not assert >= 0 for unsigned values
[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(ENABLE_TESTS "Enable unit tests" FALSE)
31option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
32
33if(WIN32)
34 # On Windows/MinGW we need to statically link to libraries.
35 # This option is user configurable, but enable it by default on win32.
36 set(STATIC_PKGDEPS_LIBS TRUE)
37endif()
38
39#===============================================================================
40#= Dependencies
41#-------------------------------------------------------------------------------
42
43find_package(PkgConfig)
44pkg_check_modules(PKGDEPS REQUIRED
45 libsigrokdecode>=0.1.0
46 libsigrok>=0.2.0
47)
48
49find_package(Qt4 REQUIRED)
50
51# On Windows/MinGW we explicitly point cmake to the Boost directory.
52if(WIN32)
53 set(BOOST_ROOT /usr/local)
54endif()
55
56find_package(Boost 1.46 COMPONENTS system thread)
57
58#===============================================================================
59#= Config Header
60#-------------------------------------------------------------------------------
61
62set(PV_TITLE PulseView)
63set(PV_DESCRIPTION "A GUI for sigrok")
64
65set(PV_VERSION_MAJOR 0)
66set(PV_VERSION_MINOR 1)
67set(PV_VERSION_MICRO 0)
68set(PV_VERSION_STRING
69 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
70)
71
72configure_file (
73 ${PROJECT_SOURCE_DIR}/config.h.in
74 ${PROJECT_BINARY_DIR}/config.h
75)
76
77#===============================================================================
78#= Sources
79#-------------------------------------------------------------------------------
80
81set(pulseview_SOURCES
82 main.cpp
83 pv/mainwindow.cpp
84 pv/samplingbar.cpp
85 pv/sigsession.cpp
86 pv/data/analog.cpp
87 pv/data/analogsnapshot.cpp
88 pv/data/logic.cpp
89 pv/data/logicsnapshot.cpp
90 pv/data/signaldata.cpp
91 pv/data/snapshot.cpp
92 pv/dialogs/about.cpp
93 pv/dialogs/hwcap.cpp
94 pv/prop/enum.cpp
95 pv/prop/property.cpp
96 pv/prop/binding/binding.cpp
97 pv/prop/binding/hwcap.cpp
98 pv/view/analogsignal.cpp
99 pv/view/cursor.cpp
100 pv/view/header.cpp
101 pv/view/logicsignal.cpp
102 pv/view/ruler.cpp
103 pv/view/signal.cpp
104 pv/view/timemarker.cpp
105 pv/view/view.cpp
106 pv/view/viewport.cpp
107)
108
109set(pulseview_HEADERS
110 pv/mainwindow.h
111 pv/samplingbar.h
112 pv/sigsession.h
113 pv/dialogs/about.h
114 pv/view/cursor.h
115 pv/view/header.h
116 pv/view/ruler.h
117 pv/view/timemarker.h
118 pv/view/view.h
119 pv/view/viewport.h
120)
121
122set(pulseview_FORMS
123 pv/dialogs/about.ui
124)
125
126set(pulseview_RESOURCES
127 pulseview.qrc
128)
129
130qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
131qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
132qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
133
134include(${QT_USE_FILE})
135
136#===============================================================================
137#= Global Definitions
138#-------------------------------------------------------------------------------
139
140add_definitions(${QT_DEFINITIONS})
141add_definitions(-Werror -Wall)
142
143#===============================================================================
144#= Global Include Directories
145#-------------------------------------------------------------------------------
146
147include_directories(
148 ${CMAKE_CURRENT_BINARY_DIR}
149 ${CMAKE_CURRENT_SOURCE_DIR}
150 ${Boost_INCLUDE_DIRS}
151)
152
153if(STATIC_PKGDEPS_LIBS)
154 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
155else()
156 include_directories(${PKGDEPS_INCLUDE_DIRS})
157endif()
158
159#===============================================================================
160#= Linker Configuration
161#-------------------------------------------------------------------------------
162
163link_directories(${Boost_LIBRARY_DIRS})
164
165set(PULSEVIEW_LINK_LIBS
166 ${Boost_LIBRARIES}
167 ${QT_LIBRARIES}
168)
169
170if(STATIC_PKGDEPS_LIBS)
171 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
172 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
173else()
174 link_directories(${PKGDEPS_LIBRARY_DIRS})
175 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
176endif()
177
178add_executable(${PROJECT_NAME}
179 ${pulseview_SOURCES}
180 ${pulseview_HEADERS_MOC}
181 ${pulseview_FORMS_HEADERS}
182 ${pulseview_RESOURCES_RCC}
183)
184
185target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
186
187#===============================================================================
188#= Installation
189#-------------------------------------------------------------------------------
190
191install(PROGRAMS ${PROJECT_NAME} DESTINATION bin/)
192
193#===============================================================================
194#= Tests
195#-------------------------------------------------------------------------------
196
197if(ENABLE_TESTS)
198 add_subdirectory(test)
199 enable_testing()
200 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
201endif(ENABLE_TESTS)