]> sigrok.org Git - pulseview.git/blob - CMakeLists.txt
b2196e4eaba5ce397016f15cc0ad892072f2f98c
[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(DISABLE_WERROR "Build without -Werror" FALSE)
31 option(ENABLE_TESTS "Enable unit tests" FALSE)
32 option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
33
34 if(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 endif()
39
40 #===============================================================================
41 #= Dependencies
42 #-------------------------------------------------------------------------------
43
44 find_package(PkgConfig)
45 pkg_check_modules(PKGDEPS REQUIRED
46         libsigrokdecode>=0.1.0
47         libsigrok>=0.2.0
48 )
49
50 find_package(Qt4 REQUIRED)
51
52 # On Windows/MinGW we explicitly point cmake to the Boost directory.
53 if(WIN32)
54         set(BOOST_ROOT /usr/local)
55 endif()
56
57 if(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*).
60 find_package(Boost 1.45 COMPONENTS system thread_win32)
61 else()
62 find_package(Boost 1.45 COMPONENTS system thread)
63 endif()
64
65 #===============================================================================
66 #= Config Header
67 #-------------------------------------------------------------------------------
68
69 set(PV_TITLE PulseView)
70 set(PV_DESCRIPTION "A GUI for sigrok")
71
72 set(PV_VERSION_MAJOR 0)
73 set(PV_VERSION_MINOR 1)
74 set(PV_VERSION_MICRO 0)
75 set(PV_VERSION_STRING
76         ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
77 )
78
79 configure_file (
80         ${PROJECT_SOURCE_DIR}/config.h.in
81         ${PROJECT_BINARY_DIR}/config.h
82 )
83
84 #===============================================================================
85 #= Sources
86 #-------------------------------------------------------------------------------
87
88 set(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
116 set(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
129 set(pulseview_FORMS
130         pv/dialogs/about.ui
131 )
132
133 set(pulseview_RESOURCES
134         pulseview.qrc
135 )
136
137 qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
138 qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
139 qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
140
141 include(${QT_USE_FILE})
142
143 #===============================================================================
144 #= Global Definitions
145 #-------------------------------------------------------------------------------
146
147 add_definitions(${QT_DEFINITIONS})
148 add_definitions(-Wextra)
149
150 if(NOT DISABLE_WERROR)
151         add_definitions(-Werror)
152 endif()
153
154 #===============================================================================
155 #= Global Include Directories
156 #-------------------------------------------------------------------------------
157
158 include_directories(
159         ${CMAKE_CURRENT_BINARY_DIR}
160         ${CMAKE_CURRENT_SOURCE_DIR}
161         ${Boost_INCLUDE_DIRS}
162 )
163
164 if(STATIC_PKGDEPS_LIBS)
165         include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
166 else()
167         include_directories(${PKGDEPS_INCLUDE_DIRS})
168 endif()
169
170 #===============================================================================
171 #= Linker Configuration
172 #-------------------------------------------------------------------------------
173
174 link_directories(${Boost_LIBRARY_DIRS})
175
176 set(PULSEVIEW_LINK_LIBS
177         ${Boost_LIBRARIES}
178         ${QT_LIBRARIES}
179 )
180
181 if(STATIC_PKGDEPS_LIBS)
182         link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
183         list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
184 else()
185         link_directories(${PKGDEPS_LIBRARY_DIRS})
186         list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
187 endif()
188
189 add_executable(${PROJECT_NAME}
190         ${pulseview_SOURCES}
191         ${pulseview_HEADERS_MOC}
192         ${pulseview_FORMS_HEADERS}
193         ${pulseview_RESOURCES_RCC}
194 )
195
196 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
197
198 #===============================================================================
199 #= Installation
200 #-------------------------------------------------------------------------------
201
202 install(PROGRAMS ${PROJECT_NAME} DESTINATION bin/)
203
204 #===============================================================================
205 #= Tests
206 #-------------------------------------------------------------------------------
207
208 if(ENABLE_TESTS)
209         add_subdirectory(test)
210         enable_testing()
211         add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
212 endif(ENABLE_TESTS)