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(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)
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)
40 #===============================================================================
42 #-------------------------------------------------------------------------------
44 find_package(PkgConfig)
45 pkg_check_modules(PKGDEPS REQUIRED
46 libsigrokdecode>=0.1.0
50 find_package(Qt4 REQUIRED)
52 # On Windows/MinGW we explicitly point cmake to the Boost directory.
54 set(BOOST_ROOT /usr/local)
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)
62 find_package(Boost 1.45 COMPONENTS system thread)
65 #===============================================================================
67 #-------------------------------------------------------------------------------
69 set(PV_TITLE PulseView)
70 set(PV_DESCRIPTION "A GUI for sigrok")
72 set(PV_VERSION_MAJOR 0)
73 set(PV_VERSION_MINOR 1)
74 set(PV_VERSION_MICRO 0)
76 ${PV_VERSION_MAJOR}.${PV_VERSION_MINOR}.${PV_VERSION_MICRO}
80 ${PROJECT_SOURCE_DIR}/config.h.in
81 ${PROJECT_BINARY_DIR}/config.h
84 #===============================================================================
86 #-------------------------------------------------------------------------------
94 pv/data/analogsnapshot.cpp
96 pv/data/logicsnapshot.cpp
97 pv/data/signaldata.cpp
103 pv/prop/binding/binding.cpp
104 pv/prop/binding/hwcap.cpp
105 pv/view/analogsignal.cpp
108 pv/view/logicsignal.cpp
111 pv/view/timemarker.cpp
116 set(pulseview_HEADERS
133 set(pulseview_RESOURCES
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})
141 include(${QT_USE_FILE})
143 #===============================================================================
144 #= Global Definitions
145 #-------------------------------------------------------------------------------
147 add_definitions(${QT_DEFINITIONS})
148 add_definitions(-Wextra)
150 if(NOT DISABLE_WERROR)
151 add_definitions(-Werror)
154 #===============================================================================
155 #= Global Include Directories
156 #-------------------------------------------------------------------------------
159 ${CMAKE_CURRENT_BINARY_DIR}
160 ${CMAKE_CURRENT_SOURCE_DIR}
161 ${Boost_INCLUDE_DIRS}
164 if(STATIC_PKGDEPS_LIBS)
165 include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
167 include_directories(${PKGDEPS_INCLUDE_DIRS})
170 #===============================================================================
171 #= Linker Configuration
172 #-------------------------------------------------------------------------------
174 link_directories(${Boost_LIBRARY_DIRS})
176 set(PULSEVIEW_LINK_LIBS
181 if(STATIC_PKGDEPS_LIBS)
182 link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
183 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
185 link_directories(${PKGDEPS_LIBRARY_DIRS})
186 list(APPEND PULSEVIEW_LINK_LIBS ${PKGDEPS_LIBRARIES})
189 add_executable(${PROJECT_NAME}
191 ${pulseview_HEADERS_MOC}
192 ${pulseview_FORMS_HEADERS}
193 ${pulseview_RESOURCES_RCC}
196 target_link_libraries(${PROJECT_NAME} ${PULSEVIEW_LINK_LIBS})
198 #===============================================================================
200 #-------------------------------------------------------------------------------
202 install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
204 #===============================================================================
205 #= Packaging (handled by CPack)
206 #-------------------------------------------------------------------------------
208 set(CPACK_PACKAGE_VERSION_MAJOR ${PV_VERSION_MAJOR})
209 set(CPACK_PACKAGE_VERSION_MINOR ${PV_VERSION_MINOR})
210 set(CPACK_PACKAGE_VERSION_PATCH ${PV_VERSION_MICRO})
211 set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
212 set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
213 set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
217 #===============================================================================
219 #-------------------------------------------------------------------------------
222 add_subdirectory(test)
224 add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/pulseview-test)