mirror of
https://github.com/DreamSourceLab/DSView.git
synced 2025-01-13 13:32:53 +08:00
378 lines
10 KiB
CMake
378 lines
10 KiB
CMake
##
|
|
## This file is part of the PulseView project.
|
|
##
|
|
## Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
|
|
## Copyright (C) 2012-2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
|
|
## Copyright (C) 2013-2014 DreamSourceLab <support@dreamsourcelab.com>
|
|
##
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation, either version 2 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
##
|
|
|
|
cmake_minimum_required(VERSION 2.8.6)
|
|
|
|
include(FindPkgConfig)
|
|
include(GNUInstallDirs)
|
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
|
|
|
|
project(DSLogic)
|
|
|
|
#===============================================================================
|
|
#= User Options
|
|
#-------------------------------------------------------------------------------
|
|
|
|
option(DISABLE_WERROR "Build without -Werror" TRUE)
|
|
option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
|
|
option(ENABLE_DECODE "Build with libsigrokdecode" FALSE)
|
|
option(ENABLE_COTIRE "Enable cotire" FALSE)
|
|
option(ENABLE_TESTS "Enable unit tests" FALSE)
|
|
option(STATIC_PKGDEPS_LIBS "Statically link to (pkg-config) libraries" FALSE)
|
|
option(FORCE_QT4 "Force use of Qt4 even if Qt5 is available" FALSE)
|
|
|
|
if(WIN32)
|
|
# On Windows/MinGW we need to statically link to libraries.
|
|
# This option is user configurable, but enable it by default on win32.
|
|
set(STATIC_PKGDEPS_LIBS TRUE)
|
|
|
|
# Windows does not support UNIX signals.
|
|
set(ENABLE_SIGNALS FALSE)
|
|
endif()
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
FORCE)
|
|
endif()
|
|
|
|
#===============================================================================
|
|
#= Dependencies
|
|
#-------------------------------------------------------------------------------
|
|
|
|
list(APPEND PKGDEPS
|
|
"libsigrok4DSLogic >= 0.2.0"
|
|
"libusb-1.0 >= 1.0.16"
|
|
)
|
|
if(ENABLE_DECODE)
|
|
list(APPEND PKGDEPS "libsigrokdecode>=0.3.0")
|
|
endif()
|
|
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS})
|
|
|
|
if(FORCE_QT4)
|
|
set(Qt5Core_FOUND FALSE)
|
|
else()
|
|
find_package(Qt5Core QUIET)
|
|
endif()
|
|
|
|
if(Qt5Core_FOUND)
|
|
message("-- Using Qt5")
|
|
find_package(Qt5Widgets REQUIRED)
|
|
find_package(Qt5Gui REQUIRED)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
|
set(QT_INCLUDE_DIRS ${Qt5Gui_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS})
|
|
set(QT_LIBRARIES Qt5::Gui Qt5::Widgets)
|
|
add_definitions(${Qt5Gui_DEFINITIONS} ${Qt5Widgets_DEFINITIONS})
|
|
else()
|
|
find_program(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac)
|
|
find_package(Qt4 REQUIRED)
|
|
endif()
|
|
|
|
find_package(Threads)
|
|
|
|
find_package(Boost 1.42 COMPONENTS filesystem system thread REQUIRED)
|
|
find_package(libusb-1.0 REQUIRED)
|
|
|
|
#===============================================================================
|
|
#= Config Header
|
|
#-------------------------------------------------------------------------------
|
|
|
|
set(DS_TITLE DSLogic)
|
|
set(DS_DESCRIPTION "A GUI for DSLogic")
|
|
|
|
set(DS_VERSION_MAJOR 0)
|
|
set(DS_VERSION_MINOR 4)
|
|
set(DS_VERSION_MICRO 0)
|
|
set(DS_VERSION_STRING
|
|
${DS_VERSION_MAJOR}.${DS_VERSION_MINOR}.${DS_VERSION_MICRO}
|
|
)
|
|
|
|
configure_file (
|
|
${PROJECT_SOURCE_DIR}/config.h.in
|
|
${PROJECT_BINARY_DIR}/config.h
|
|
)
|
|
|
|
#===============================================================================
|
|
#= Sources
|
|
#-------------------------------------------------------------------------------
|
|
|
|
set(DSLogic_SOURCES
|
|
main.cpp
|
|
pv/devicemanager.cpp
|
|
pv/mainwindow.cpp
|
|
pv/sigsession.cpp
|
|
pv/storesession.cpp
|
|
pv/data/analog.cpp
|
|
pv/data/analogsnapshot.cpp
|
|
pv/data/dso.cpp
|
|
pv/data/dsosnapshot.cpp
|
|
pv/data/group.cpp
|
|
pv/data/groupsnapshot.cpp
|
|
pv/data/logic.cpp
|
|
pv/data/logicsnapshot.cpp
|
|
pv/data/signaldata.cpp
|
|
pv/data/snapshot.cpp
|
|
pv/device/devinst.cpp
|
|
pv/device/device.cpp
|
|
pv/device/file.cpp
|
|
pv/device/inputfile.cpp
|
|
pv/device/sessionfile.cpp
|
|
pv/dialogs/about.cpp
|
|
pv/dialogs/deviceoptions.cpp
|
|
pv/dialogs/search.cpp
|
|
pv/dialogs/storeprogress.cpp
|
|
pv/dock/dsotriggerdock.cpp
|
|
pv/dock/measuredock.cpp
|
|
pv/dock/searchdock.cpp
|
|
pv/dock/triggerdock.cpp
|
|
pv/prop/bool.cpp
|
|
pv/prop/double.cpp
|
|
pv/prop/enum.cpp
|
|
pv/prop/int.cpp
|
|
pv/prop/property.cpp
|
|
pv/prop/string.cpp
|
|
pv/prop/binding/binding.cpp
|
|
pv/prop/binding/deviceoptions.cpp
|
|
pv/toolbars/filebar.cpp
|
|
pv/toolbars/logobar.cpp
|
|
pv/toolbars/samplingbar.cpp
|
|
pv/toolbars/trigbar.cpp
|
|
pv/view/analogsignal.cpp
|
|
pv/view/cursor.cpp
|
|
pv/view/devmode.cpp
|
|
pv/view/dsldial.cpp
|
|
pv/view/dsosignal.cpp
|
|
pv/view/groupsignal.cpp
|
|
pv/view/header.cpp
|
|
pv/view/logicsignal.cpp
|
|
pv/view/ruler.cpp
|
|
pv/view/selectableitem.cpp
|
|
pv/view/signal.cpp
|
|
pv/view/timemarker.cpp
|
|
pv/view/trace.cpp
|
|
pv/view/view.cpp
|
|
pv/view/viewport.cpp
|
|
pv/widgets/fakelineedit.cpp
|
|
)
|
|
|
|
set(DSLogic_HEADERS
|
|
pv/mainwindow.h
|
|
pv/sigsession.h
|
|
pv/storesession.h
|
|
pv/device/devinst.h
|
|
pv/dialogs/about.h
|
|
pv/dialogs/deviceoptions.h
|
|
pv/dialogs/search.h
|
|
pv/dialogs/storeprogress.h
|
|
pv/dock/dsotriggerdock.h
|
|
pv/dock/measuredock.h
|
|
pv/dock/searchdock.h
|
|
pv/dock/triggerdock.h
|
|
pv/prop/bool.h
|
|
pv/prop/double.h
|
|
pv/prop/enum.h
|
|
pv/prop/int.h
|
|
pv/prop/property.h
|
|
pv/prop/string.h
|
|
pv/toolbars/filebar.h
|
|
pv/toolbars/logobar.h
|
|
pv/toolbars/samplingbar.h
|
|
pv/toolbars/trigbar.h
|
|
pv/view/cursor.h
|
|
pv/view/devmode.h
|
|
pv/view/header.h
|
|
pv/view/ruler.h
|
|
pv/view/selectableitem.h
|
|
pv/view/timemarker.h
|
|
pv/view/trace.h
|
|
pv/view/view.h
|
|
pv/view/viewport.h
|
|
pv/widgets/fakelineedit.h
|
|
)
|
|
|
|
set(DSLogic_FORMS
|
|
pv/dialogs/about.ui
|
|
)
|
|
|
|
set(DSLogic_RESOURCES
|
|
DSLogic.qrc
|
|
)
|
|
|
|
|
|
if(ENABLE_DECODE)
|
|
list(APPEND DSLogic_SOURCES
|
|
pv/dock/protocoldock.cpp
|
|
pv/data/decoderstack.cpp
|
|
pv/data/decode/annotation.cpp
|
|
pv/data/decode/decoder.cpp
|
|
pv/data/decode/row.cpp
|
|
pv/data/decode/rowdata.cpp
|
|
pv/prop/binding/decoderoptions.cpp
|
|
pv/view/decodetrace.cpp
|
|
pv/widgets/decodergroupbox.cpp
|
|
pv/widgets/decodermenu.cpp
|
|
)
|
|
|
|
list(APPEND DSLogic_HEADERS
|
|
pv/dock/protocoldock.h
|
|
pv/data/decoderstack.h
|
|
pv/view/decodetrace.h
|
|
pv/widgets/decodergroupbox.h
|
|
pv/widgets/decodermenu.h
|
|
)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
# Use the DSLogic icon for the DSLogic.exe executable.
|
|
set(CMAKE_RC_COMPILE_OBJECT "${CMAKE_RC_COMPILER} -O coff -I${CMAKE_CURRENT_SOURCE_DIR} <SOURCE> <OBJECT>")
|
|
enable_language(RC)
|
|
list(APPEND DSLogic_SOURCES DSLogic.rc)
|
|
endif()
|
|
|
|
if(Qt5Core_FOUND)
|
|
qt5_wrap_cpp(DSLogic_HEADERS_MOC ${DSLogic_HEADERS})
|
|
qt5_wrap_ui(DSLogic_FORMS_HEADERS ${DSLogic_FORMS})
|
|
qt5_add_resources(DSLogic_RESOURCES_RCC ${DSLogic_RESOURCES})
|
|
else()
|
|
qt4_wrap_cpp(DSLogic_HEADERS_MOC ${DSLogic_HEADERS})
|
|
qt4_wrap_ui(DSLogic_FORMS_HEADERS ${DSLogic_FORMS})
|
|
qt4_add_resources(DSLogic_RESOURCES_RCC ${DSLogic_RESOURCES})
|
|
include(${QT_USE_FILE})
|
|
endif()
|
|
|
|
#===============================================================================
|
|
#= Global Definitions
|
|
#-------------------------------------------------------------------------------
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
add_definitions(-Wall -Wextra -Wno-return-type -Wno-ignored-qualifiers)
|
|
|
|
if(ENABLE_DECODE)
|
|
add_definitions(-DENABLE_DECODE)
|
|
endif()
|
|
|
|
if(NOT DISABLE_WERROR)
|
|
add_definitions(-Werror)
|
|
endif()
|
|
|
|
#===============================================================================
|
|
#= Global Include Directories
|
|
#-------------------------------------------------------------------------------
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${Boost_INCLUDE_DIRS}
|
|
${QT_INCLUDE_DIRS}
|
|
)
|
|
|
|
if(STATIC_PKGDEPS_LIBS)
|
|
include_directories(${PKGDEPS_STATIC_INCLUDE_DIRS})
|
|
else()
|
|
include_directories(${PKGDEPS_INCLUDE_DIRS})
|
|
endif()
|
|
|
|
#===============================================================================
|
|
#= Linker Configuration
|
|
#-------------------------------------------------------------------------------
|
|
|
|
link_directories(${Boost_LIBRARY_DIRS})
|
|
|
|
set(DSLOGIC_LINK_LIBS
|
|
${Boost_LIBRARIES}
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
${QT_LIBRARIES}
|
|
${LIBUSB_1_LIBRARIES}
|
|
)
|
|
|
|
if(STATIC_PKGDEPS_LIBS)
|
|
link_directories(${PKGDEPS_STATIC_LIBRARY_DIRS})
|
|
list(APPEND DSLOGIC_LINK_LIBS ${PKGDEPS_STATIC_LIBRARIES})
|
|
if(WIN32)
|
|
# Workaround for a MinGW linking issue.
|
|
list(APPEND PULSEVIEW_LINK_LIBS "-llzma -llcms2")
|
|
endif()
|
|
else()
|
|
link_directories(${PKGDEPS_LIBRARY_DIRS})
|
|
list(APPEND DSLOGIC_LINK_LIBS ${PKGDEPS_LIBRARIES})
|
|
endif()
|
|
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
${DSLogic_SOURCES}
|
|
${DSLogic_HEADERS_MOC}
|
|
${DSLogic_FORMS_HEADERS}
|
|
${DSLogic_RESOURCES_RCC}
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME} ${DSLOGIC_LINK_LIBS})
|
|
|
|
if(WIN32)
|
|
# Pass -mwindows so that no "DOS box" will open when PulseView is started.
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "-mwindows")
|
|
endif()
|
|
|
|
|
|
if(ENABLE_COTIRE)
|
|
include(cotire)
|
|
cotire(${PROJECT_NAME})
|
|
endif()
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES INSTALL_RPATH "/usr/local/lib")
|
|
|
|
#===============================================================================
|
|
#= Installation
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Install the executable.
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION bin/)
|
|
install(FILES res/DSLogic.fw DESTINATION bin/res/)
|
|
install(FILES res/DSLogic33.bin DESTINATION bin/res/)
|
|
install(FILES res/DSLogic50.bin DESTINATION bin/res/)
|
|
|
|
#===============================================================================
|
|
#= Packaging (handled by CPack)
|
|
#-------------------------------------------------------------------------------
|
|
|
|
set(CPACK_PACKAGE_VERSION_MAJOR ${DS_VERSION_MAJOR})
|
|
set(CPACK_PACKAGE_VERSION_MINOR ${DS_VERSION_MINOR})
|
|
set(CPACK_PACKAGE_VERSION_PATCH ${DS_VERSION_MICRO})
|
|
set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README)
|
|
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING)
|
|
set(CPACK_SOURCE_IGNORE_FILES ${CMAKE_CURRENT_BINARY_DIR} ".gitignore" ".git")
|
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME
|
|
"${CMAKE_PROJECT_NAME}-${DS_VERSION_MAJOR}.${DS_VERSION_MINOR}.${DS_VERSION_MICRO}")
|
|
set(CPACK_SOURCE_GENERATOR "TGZ")
|
|
|
|
include(CPack)
|
|
|
|
#===============================================================================
|
|
#= Tests
|
|
#-------------------------------------------------------------------------------
|
|
|
|
if(ENABLE_TESTS)
|
|
add_subdirectory(test)
|
|
enable_testing()
|
|
add_test(test ${CMAKE_CURRENT_BINARY_DIR}/test/DSLogic-test)
|
|
endif(ENABLE_TESTS)
|