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