2 ## This file is part of the PulseView project.
4 ## Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 ## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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.
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.
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/>.
21 cmake_minimum_required(VERSION 2.6)
22 include(FindPkgConfig)
26 #===============================================================================
28 #-------------------------------------------------------------------------------
30 option(ENABLE_TESTS "Enable unit tests" FALSE)
31 option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
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)
39 #===============================================================================
41 #-------------------------------------------------------------------------------
43 find_package(PkgConfig)
44 pkg_check_modules(PKGDEPS REQUIRED
45 libsigrokdecode>=0.1.0
49 # On Windows/MinGW we explicitly point cmake to the Boost directory.
51 set(BOOST_ROOT /usr/local)
54 find_package(Qt4 REQUIRED)
56 find_package(Boost 1.46)
58 #===============================================================================
60 #-------------------------------------------------------------------------------
62 set(PV_TITLE PulseView)
63 set(PV_DESCRIPTION "A GUI for sigrok")
65 set(PV_VERSION_MAJOR 0)
66 set(PV_VERSION_MINOR 1)
67 set(PV_VERSION_MICRO 0)
69 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
73 ${PROJECT_SOURCE_DIR}/config.h.in
74 ${PROJECT_BINARY_DIR}/config.h
77 #===============================================================================
79 #-------------------------------------------------------------------------------
86 pv/logicdatasnapshot.cpp
93 pv/view/logicsignal.cpp
96 pv/view/timemarker.cpp
101 set(pulseview_HEADERS
118 set(pulseview_RESOURCES
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})
126 include(${QT_USE_FILE})
128 #===============================================================================
129 #= Global Definitions
130 #-------------------------------------------------------------------------------
132 add_definitions(${QT_DEFINITIONS})
133 add_definitions(-Werror -Wall)
135 #===============================================================================
136 #= Global Include Directories
137 #-------------------------------------------------------------------------------
140 ${CMAKE_CURRENT_BINARY_DIR}
141 ${CMAKE_CURRENT_SOURCE_DIR}
142 ${Boost_INCLUDE_DIRS}
145 if(STATIC_PKGDEPS_LIBS)
146 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
148 include_directories(${PKGDEPS_INCLUDE_DIRS})
151 #===============================================================================
152 #= Linker Configuration
153 #-------------------------------------------------------------------------------
155 link_directories(${Boost_LIBRARY_DIRS})
157 set(PULSEVIEW_LINK_LIBS
162 if(STATIC_PKGDEPS_LIBS)
163 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
164 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
166 link_directories(${PKGDEPS_LIBRARY_DIRS})
167 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
170 add_executable(${PROJECT_NAME}
172 ${pulseview_HEADERS_MOC}
173 ${pulseview_FORMS_HEADERS}
174 ${pulseview_RESOURCES_RCC}
177 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
179 #===============================================================================
181 #-------------------------------------------------------------------------------
183 install(PROGRAMS ${PROJECT_NAME} DESTINATION bin/)
185 #===============================================================================
187 #-------------------------------------------------------------------------------
190 add_subdirectory(test)
192 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)