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