2013-11-22 14:42:02 +01:00
|
|
|
# Define the main-project name
|
2016-05-24 19:56:43 +02:00
|
|
|
project(hyperion)
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# define the minimum cmake version (as required by cmake)
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2013-08-11 13:13:19 +02:00
|
|
|
|
2016-06-04 19:26:34 +02:00
|
|
|
IF ( POLICY CMP0026 )
|
|
|
|
CMAKE_POLICY( SET CMP0026 OLD )
|
|
|
|
ENDIF()
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2016-05-22 13:00:06 +02:00
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
SET ( DEFAULT_AMLOGIC OFF )
|
|
|
|
SET ( DEFAULT_DISPMANX OFF )
|
|
|
|
SET ( DEFAULT_FB OFF )
|
|
|
|
SET ( DEFAULT_OSX OFF )
|
|
|
|
SET ( DEFAULT_X11 OFF )
|
2016-05-24 19:56:43 +02:00
|
|
|
SET ( DEFAULT_SPIDEV OFF )
|
2016-05-22 00:27:06 +02:00
|
|
|
SET ( DEFAULT_WS2812BPWM OFF )
|
|
|
|
SET ( DEFAULT_WS281XPWM OFF )
|
2016-05-31 22:55:11 +02:00
|
|
|
SET ( DEFAULT_ZEROCONF OFF )
|
2016-05-22 00:27:06 +02:00
|
|
|
|
|
|
|
if (APPLE)
|
|
|
|
SET ( DEFAULT_OSX ON )
|
|
|
|
else ()
|
2016-05-22 13:00:06 +02:00
|
|
|
if ( "${PLATFORM}" STREQUAL "rpi" )
|
2016-05-24 19:56:43 +02:00
|
|
|
SET ( DEFAULT_DISPMANX ON )
|
|
|
|
SET ( DEFAULT_SPIDEV ON )
|
|
|
|
elseif ( "${PLATFORM}" STREQUAL "rpi-pwm" )
|
2016-05-22 00:27:06 +02:00
|
|
|
SET ( DEFAULT_DISPMANX ON )
|
|
|
|
SET ( DEFAULT_WS2812BPWM ON )
|
|
|
|
SET ( DEFAULT_WS281XPWM ON )
|
2016-05-24 19:56:43 +02:00
|
|
|
SET ( DEFAULT_SPIDEV ON )
|
2016-05-22 13:00:06 +02:00
|
|
|
elseif ( "${PLATFORM}" STREQUAL "wetek" )
|
2016-05-22 00:27:06 +02:00
|
|
|
SET ( DEFAULT_AMLOGIC ON )
|
|
|
|
SET ( DEFAULT_FB ON )
|
2016-05-22 13:00:06 +02:00
|
|
|
elseif ( "${PLATFORM}" STREQUAL "x86" )
|
2016-05-22 00:27:06 +02:00
|
|
|
SET ( DEFAULT_X11 ON )
|
2016-05-24 19:56:43 +02:00
|
|
|
SET ( DEFAULT_FB ON )
|
2016-05-22 13:00:06 +02:00
|
|
|
elseif ( "${PLATFORM}" STREQUAL "imx6" )
|
2016-05-22 00:27:06 +02:00
|
|
|
SET ( DEFAULT_FB ON )
|
|
|
|
endif()
|
|
|
|
endif ()
|
|
|
|
|
2013-11-19 23:02:41 +01:00
|
|
|
# set the build options
|
2016-05-31 22:55:11 +02:00
|
|
|
option(ENABLE_ZEROCONF "Enable the avahi/zeroconf announce" ${DEFAULT_ZEROCONF} )
|
|
|
|
message(STATUS "ENABLE_ZEROCONF = " ${ENABLE_ZEROCONF})
|
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_AMLOGIC "Enable the AMLOGIC video grabber" ${DEFAULT_AMLOGIC} )
|
2015-08-07 14:37:41 +02:00
|
|
|
message(STATUS "ENABLE_AMLOGIC = " ${ENABLE_AMLOGIC})
|
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_DISPMANX "Enable the RPi dispmanx grabber" ${DEFAULT_DISPMANX} )
|
2013-11-19 23:02:41 +01:00
|
|
|
message(STATUS "ENABLE_DISPMANX = " ${ENABLE_DISPMANX})
|
2014-01-28 09:47:16 +01:00
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_FB "Enable the framebuffer grabber" ${DEFAULT_FB} )
|
2015-08-07 14:37:41 +02:00
|
|
|
message(STATUS "ENABLE_FB = " ${ENABLE_FB})
|
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_OSX "Enable the osx grabber" ${DEFAULT_OSX} )
|
2015-08-07 14:37:41 +02:00
|
|
|
message(STATUS "ENABLE_OSX = " ${ENABLE_OSX})
|
|
|
|
|
2016-05-24 19:56:43 +02:00
|
|
|
option(ENABLE_SPIDEV "Enable the SPIDEV device" ${DEFAULT_SPIDEV} )
|
2013-12-17 22:53:16 +01:00
|
|
|
message(STATUS "ENABLE_SPIDEV = " ${ENABLE_SPIDEV})
|
2013-11-19 23:02:41 +01:00
|
|
|
|
2015-08-07 14:37:41 +02:00
|
|
|
option(ENABLE_TINKERFORGE "Enable the TINKERFORGE device" ON)
|
|
|
|
message(STATUS "ENABLE_TINKERFORGE = " ${ENABLE_TINKERFORGE})
|
2014-09-19 16:37:58 +02:00
|
|
|
|
2014-01-28 09:47:16 +01:00
|
|
|
option(ENABLE_V4L2 "Enable the V4L2 grabber" ON)
|
2014-01-04 13:24:05 +01:00
|
|
|
message(STATUS "ENABLE_V4L2 = " ${ENABLE_V4L2})
|
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_WS2812BPWM "Enable the WS2812b-PWM device" ${DEFAULT_WS2812BPWM} )
|
2015-08-07 14:37:41 +02:00
|
|
|
message(STATUS "ENABLE_WS2812BPWM = " ${ENABLE_WS2812BPWM})
|
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_WS281XPWM "Enable the WS281x-PWM device" ${DEFAULT_WS281XPWM} )
|
2016-03-04 09:07:02 +01:00
|
|
|
message(STATUS "ENABLE_WS281XPWM = " ${ENABLE_WS281XPWM})
|
|
|
|
|
2016-05-22 00:27:06 +02:00
|
|
|
option(ENABLE_X11 "Enable the X11 grabber" ${DEFAULT_X11})
|
2014-01-28 09:47:16 +01:00
|
|
|
message(STATUS "ENABLE_X11 = " ${ENABLE_X11})
|
|
|
|
|
2016-01-06 17:31:23 +01:00
|
|
|
option(ENABLE_QT5 "Enable QT5" OFF)
|
|
|
|
message(STATUS "ENABLE_QT5 = " ${ENABLE_QT5})
|
|
|
|
|
2016-03-10 12:06:03 +01:00
|
|
|
option(ENABLE_TESTS "Compile additional test applications" OFF)
|
|
|
|
message(STATUS "ENABLE_TESTS = " ${ENABLE_TESTS})
|
|
|
|
|
2016-06-05 16:08:55 +02:00
|
|
|
option(ENABLE_PROFILER "enable profiler capabilities - not for release code" OFF)
|
|
|
|
message(STATUS "ENABLE_PROFILER = " ${ENABLE_PROFILER})
|
|
|
|
|
2014-09-08 16:16:02 +02:00
|
|
|
|
2015-01-18 00:04:45 +01:00
|
|
|
if(ENABLE_FB AND ENABLE_DISPMANX)
|
|
|
|
message(FATAL_ERROR "dispmanx grabber and framebuffer grabber cannot be used at the same time")
|
2016-05-22 00:27:06 +02:00
|
|
|
endif()
|
2015-01-18 00:04:45 +01:00
|
|
|
|
2015-01-24 23:42:22 +01:00
|
|
|
if(ENABLE_FB AND ENABLE_OSX)
|
|
|
|
message(FATAL_ERROR "osx grabber and framebuffer grabber cannot be used at the same time")
|
2016-05-22 00:27:06 +02:00
|
|
|
endif()
|
2015-01-24 23:42:22 +01:00
|
|
|
|
|
|
|
if(ENABLE_OSX AND ENABLE_DISPMANX)
|
|
|
|
message(FATAL_ERROR "dispmanx grabber and osx grabber cannot be used at the same time")
|
2016-05-22 00:27:06 +02:00
|
|
|
endif()
|
2015-01-24 23:42:22 +01:00
|
|
|
|
2016-03-10 17:11:02 +01:00
|
|
|
SET ( PROTOBUF_INSTALL_BIN_DIR ${CMAKE_BINARY_DIR}/proto )
|
|
|
|
SET ( PROTOBUF_INSTALL_LIB_DIR ${CMAKE_BINARY_DIR}/proto )
|
2016-03-10 12:22:44 +01:00
|
|
|
|
2016-01-06 17:31:23 +01:00
|
|
|
#if(ENABLE_QT5)
|
|
|
|
# TODO vs ENABLE_QT4?
|
|
|
|
#endif(ENABLE_QT5)
|
|
|
|
|
2013-11-19 23:02:41 +01:00
|
|
|
# Createt the configuration file
|
2016-03-10 06:53:21 +01:00
|
|
|
|
|
|
|
# Add project specific cmake modules (find, etc)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
|
|
|
|
find_package(GitVersion)
|
|
|
|
|
2013-11-19 23:02:41 +01:00
|
|
|
# configure a header file to pass some of the CMake settings
|
|
|
|
# to the source code
|
2014-02-07 09:20:00 +01:00
|
|
|
configure_file("${PROJECT_SOURCE_DIR}/HyperionConfig.h.in" "${PROJECT_BINARY_DIR}/HyperionConfig.h")
|
2013-11-19 23:02:41 +01:00
|
|
|
include_directories("${PROJECT_BINARY_DIR}")
|
|
|
|
|
2016-01-06 17:31:23 +01:00
|
|
|
if(ENABLE_QT5)
|
2016-03-10 06:53:21 +01:00
|
|
|
ADD_DEFINITIONS ( -DENABLE_QT5 )
|
|
|
|
#find_package(Qt5Widgets)
|
2016-05-22 00:27:06 +02:00
|
|
|
else()
|
2016-03-10 06:53:21 +01:00
|
|
|
# Add specific cmake modules to find qt4 (default version finds first available QT which might not be qt4)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/qt4)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif()
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# Define the global output path of binaries
|
|
|
|
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)
|
|
|
|
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|
2016-05-24 19:56:43 +02:00
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
file(MAKE_DIRECTORY ${LIBRARY_OUTPUT_PATH})
|
|
|
|
file(MAKE_DIRECTORY ${EXECUTABLE_OUTPUT_PATH})
|
|
|
|
|
|
|
|
# Add the project include directory as additional include path
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/dependencies/include)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/include)
|
|
|
|
|
|
|
|
# Prefer static linking over dynamic
|
2013-11-30 16:53:14 +01:00
|
|
|
#set(CMAKE_FIND_LIBRARY_SUFFIXES ".a;.so")
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# enable C++11
|
2013-12-28 10:36:05 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Wall")
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++ -std=c++11 -Wall")
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2016-01-06 17:31:23 +01:00
|
|
|
if(ENABLE_QT5)
|
|
|
|
#find_package(Qt5Core REQUIRED)
|
2016-03-10 06:53:21 +01:00
|
|
|
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
|
|
|
# set(CMAKE_CXX_FLAGS "-fPIC")
|
2016-05-22 00:27:06 +02:00
|
|
|
else()
|
2016-03-10 06:53:21 +01:00
|
|
|
# Configure the use of QT4
|
|
|
|
find_package(Qt4 COMPONENTS QtCore QtNetwork QtGui REQUIRED QUIET)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif()
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-11-19 23:02:41 +01:00
|
|
|
#add libusb and pthreads
|
2013-11-13 20:15:53 +01:00
|
|
|
find_package(libusb-1.0 REQUIRED)
|
2013-11-19 23:02:41 +01:00
|
|
|
find_package(Threads REQUIRED)
|
2016-01-06 17:31:23 +01:00
|
|
|
if(ENABLE_QT5)
|
2016-03-10 06:53:21 +01:00
|
|
|
#include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
2016-05-22 00:27:06 +02:00
|
|
|
else()
|
2016-03-10 06:53:21 +01:00
|
|
|
include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
2016-05-22 00:27:06 +02:00
|
|
|
endif()
|
2016-01-06 17:31:23 +01:00
|
|
|
|
2013-12-17 22:53:16 +01:00
|
|
|
# TODO[TvdZ]: This linking directory should only be added if we are cross compiling
|
|
|
|
if(NOT APPLE)
|
|
|
|
link_directories(${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
|
|
|
endif()
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2015-01-24 23:42:22 +01:00
|
|
|
if(ENABLE_OSX)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "-framework CoreGraphics")
|
|
|
|
endif()
|
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
# Add the source/lib directories
|
|
|
|
add_subdirectory(dependencies)
|
|
|
|
add_subdirectory(libsrc)
|
|
|
|
add_subdirectory(src)
|
2016-03-10 12:06:03 +01:00
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(test)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif ()
|
2013-09-09 22:35:03 +02:00
|
|
|
|
|
|
|
# Add the doxygen generation directory
|
|
|
|
add_subdirectory(doc)
|
2016-05-22 00:27:06 +02:00
|
|
|
|
|
|
|
# uninstall target
|
|
|
|
configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY)
|
|
|
|
|
|
|
|
add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
|
|
|
|
|
2016-05-22 13:00:06 +02:00
|
|
|
# enable make package - no code after this line !
|
|
|
|
include (${CMAKE_CURRENT_SOURCE_DIR}/cmake/packages.cmake)
|