]> sigrok.org Git - pulseview.git/blob - CMakeLists.txt
ee79db217e61c8dafa65b09e8de12bb0184f6991
[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 find_package(Boost 1.46)
57
58 #===============================================================================
59 #= Config Header
60 #-------------------------------------------------------------------------------
61
62 set(PV_TITLE PulseView)
63 set(PV_DESCRIPTION "A GUI for sigrok")
64
65 set(PV_VERSION_MAJOR 0)
66 set(PV_VERSION_MINOR 1)
67 set(PV_VERSION_MICRO 0)
68 set(PV_VERSION_STRING
69         ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
70 )
71
72 configure_file (
73         ${PROJECT_SOURCE_DIR}/config.h.in
74         ${PROJECT_BINARY_DIR}/config.h
75 )
76
77 #===============================================================================
78 #= Sources
79 #-------------------------------------------------------------------------------
80
81 set(pulseview_SOURCES
82         main.cpp
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
93         pv/view/cursor.cpp
94         pv/view/header.cpp
95         pv/view/ruler.cpp
96         pv/view/timemarker.cpp
97         pv/view/view.cpp
98         pv/view/viewport.cpp
99 )
100
101 set(pulseview_HEADERS
102         pv/about.h
103         pv/mainwindow.h
104         pv/samplingbar.h
105         pv/sigsession.h
106         pv/view/header.h
107         pv/view/ruler.h
108         pv/view/view.h
109         pv/view/viewport.h
110 )
111
112 set(pulseview_FORMS
113         pv/about.ui
114 )
115
116 set(pulseview_RESOURCES
117         pulseview.qrc
118 )
119
120 qt4_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
121 qt4_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
122 qt4_add_resources(pulseview_RESOURCES_RCC ${pulseview_RESOURCES})
123
124 include(${QT_USE_FILE})
125
126 #===============================================================================
127 #= Global Definitions
128 #-------------------------------------------------------------------------------
129
130 add_definitions(${QT_DEFINITIONS})
131 add_definitions(-Werror -Wall)
132
133 #===============================================================================
134 #= Global Include Directories
135 #-------------------------------------------------------------------------------
136
137 include_directories(
138         ${CMAKE_CURRENT_BINARY_DIR}
139         ${CMAKE_CURRENT_SOURCE_DIR}
140         ${Boost_INCLUDE_DIRS}
141 )
142
143 if(STATIC_PKGDEPS_LIBS)
144         include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
145 else()
146         include_directories(${PKGDEPS_INCLUDE_DIRS})
147 endif()
148
149 #===============================================================================
150 #= Linker Configuration
151 #-------------------------------------------------------------------------------
152
153 link_directories(${Boost_LIBRARY_DIRS})
154
155 set(PULSEVIEW_LINK_LIBS
156         ${Boost_LIBRARIES}
157         ${QT_LIBRARIES}
158 )
159
160 if(STATIC_PKGDEPS_LIBS)
161         link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
162         list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
163 else()
164         link_directories(${PKGDEPS_LIBRARY_DIRS})
165         list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
166 endif()
167
168 add_executable(${PROJECT_NAME}
169         ${pulseview_SOURCES}
170         ${pulseview_HEADERS_MOC}
171         ${pulseview_FORMS_HEADERS}
172         ${pulseview_RESOURCES_RCC}
173 )
174
175 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
176
177 #===============================================================================
178 #= Installation
179 #-------------------------------------------------------------------------------
180
181 install(PROGRAMS ${PROJECT_NAME} DESTINATION bin/)
182
183 #===============================================================================
184 #= Tests
185 #-------------------------------------------------------------------------------
186
187 if(ENABLE_TESTS)
188         add_subdirectory(test)
189         enable_testing()
190         add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)
191 endif(ENABLE_TESTS)