]> sigrok.org Git - pulseview.git/blame - CMakeLists.txt
Added hover point to pv::view::View
[pulseview.git] / CMakeLists.txt
CommitLineData
68c4a3b3 1##
190fc91a 2## This file is part of the PulseView project.
68c4a3b3
JH
3##
4## Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
30588653 5## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
68c4a3b3
JH
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
df944399
JH
21cmake_minimum_required(VERSION 2.6)
22include(FindPkgConfig)
23
a8d3fb2d 24project(pulseview)
df944399 25
30588653 26#===============================================================================
506523c1
JH
27#= User Options
28#-------------------------------------------------------------------------------
29
30option(ENABLE_TESTS "Enable unit tests" FALSE)
7d297a01 31option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
b04e278d
AG
32
33if(WIN32)
7d297a01
UH
34 # On Windows/MinGW we need to statically link to libraries.
35 # This option is user configurable, but enable it by default on win32.
b04e278d
AG
36 set(STATIC_PKGDEPS_LIBS TRUE)
37endif()
506523c1
JH
38
39#===============================================================================
30588653
AG
40#= Dependencies
41#-------------------------------------------------------------------------------
42
df944399
JH
43find_package(PkgConfig)
44pkg_check_modules(PKGDEPS REQUIRED
45 libsigrokdecode>=0.1.0
0dfbf7ff 46 libsigrok>=0.2.0
df944399
JH
47)
48
4cd24a75
UH
49# On Windows/MinGW we explicitly point cmake to the Boost directory.
50if(WIN32)
951c583c 51 set(BOOST_ROOT /usr/local)
7d297a01 52endif()
4cd24a75 53
df944399 54find_package(Qt4 REQUIRED)
f617d9ac 55
f617d9ac 56find_package(Boost 1.46)
df944399 57
075fb499
AG
58#===============================================================================
59#= Config Header
60#-------------------------------------------------------------------------------
61
f7951df4 62set(PV_TITLE PulseView)
d4384c6d 63set(PV_DESCRIPTION "A GUI for sigrok")
f7951df4 64
075fb499
AG
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)
df944399 76
30588653
AG
77#===============================================================================
78#= Sources
79#-------------------------------------------------------------------------------
80
a8d3fb2d 81set(pulseview_SOURCES
df944399 82 main.cpp
51e77110
JH
83 pv/about.cpp
84 pv/datasnapshot.cpp
85 pv/logicdata.cpp
86 pv/logicdatasnapshot.cpp
87 pv/logicsignal.cpp
88 pv/mainwindow.cpp
89 pv/samplingbar.cpp
90 pv/signaldata.cpp
91 pv/sigsession.cpp
92 pv/signal.cpp
1d8dca91 93 pv/view/header.cpp
ccdd3ef5 94 pv/view/ruler.cpp
cdf7bea7
JH
95 pv/view/view.cpp
96 pv/view/viewport.cpp
df944399
JH
97)
98
a8d3fb2d 99set(pulseview_HEADERS
51e77110
JH
100 pv/about.h
101 pv/mainwindow.h
102 pv/samplingbar.h
103 pv/sigsession.h
1d8dca91 104 pv/view/header.h
ccdd3ef5 105 pv/view/ruler.h
cdf7bea7
JH
106 pv/view/view.h
107 pv/view/viewport.h
df944399
JH
108)
109
a8d3fb2d 110set(pulseview_FORMS
51e77110 111 pv/about.ui
df944399
JH
112)
113
a8d3fb2d
JH
114set(pulseview_RESOURCES
115 pulseview.qrc
df944399
JH
116)
117
a8d3fb2d
JH
118qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
119qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
120qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
df944399
JH
121
122include(${QT_USE_FILE})
123
30588653
AG
124#===============================================================================
125#= Global Definitions
126#-------------------------------------------------------------------------------
127
df944399 128add_definitions(${QT_DEFINITIONS})
38935007 129add_definitions(-Werror -Wall)
df944399 130
30588653
AG
131#===============================================================================
132#= Global Include Directories
133#-------------------------------------------------------------------------------
134
b04e278d
AG
135include_directories(
136 ${CMAKE_CURRENT_BINARY_DIR}
cef18fc6 137 ${CMAKE_CURRENT_SOURCE_DIR}
b04e278d
AG
138 ${Boost_INCLUDE_DIRS}
139)
140
141if(STATIC_PKGDEPS_LIBS)
142 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
143else()
144 include_directories(${PKGDEPS_INCLUDE_DIRS})
145endif()
df944399 146
30588653
AG
147#===============================================================================
148#= Linker Configuration
149#-------------------------------------------------------------------------------
150
b04e278d
AG
151link_directories(${Boost_LIBRARY_DIRS})
152
153set(PULSEVIEW_LINK_LIBS
154 ${Boost_LIBRARIES}
155 ${QT_LIBRARIES}
156)
157
158if(STATIC_PKGDEPS_LIBS)
159 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
160 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
161else()
162 link_directories(${PKGDEPS_LIBRARY_DIRS})
163 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
164endif()
df944399 165
5a13850b 166add_executable(${PROJECT_NAME}
a8d3fb2d
JH
167 ${pulseview_SOURCES}
168 ${pulseview_HEADERS_MOC}
169 ${pulseview_FORMS_HEADERS}
170 ${pulseview_RESOURCES_RCC}
df944399
JH
171)
172
5a13850b 173target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
f0fa92c6 174
30588653
AG
175#===============================================================================
176#= Installation
177#-------------------------------------------------------------------------------
178
5a13850b 179install(PROGRAMS ${PROJECT_NAME} DESTINATION bin/)
bc1c1462 180
30588653
AG
181#===============================================================================
182#= Tests
183#-------------------------------------------------------------------------------
184
77e8ac52 185if(ENABLE_TESTS)
fb746bcc 186 add_subdirectory(test)
951c583c 187 enable_testing()
fb746bcc 188 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
77e8ac52 189endif(ENABLE_TESTS)