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
|
|
|
|
2013-08-13 19:45:17 +02:00
|
|
|
#set(CMAKE_TOOLCHAIN_FILE /opt/raspberrypi/Toolchain-RaspberryPi.cmake)
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# Define the main-project name
|
|
|
|
project(Hyperion)
|
|
|
|
|
|
|
|
# Add project specific cmake modules (find, etc)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
|
|
|
|
# Define the global output path of binaries
|
|
|
|
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)
|
|
|
|
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|
|
|
|
|
|
|
|
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
|
|
|
|
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a;.so")
|
|
|
|
|
2013-08-03 23:24:22 +02:00
|
|
|
set(CMAKE_BUILD_TYPE "Release")
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# enable C++11
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Wall")
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
# Configure the use of QT4
|
2013-08-15 21:11:02 +02:00
|
|
|
find_package(Qt4 COMPONENTS QtCore QtGui QtNetwork REQUIRED QUIET)
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-08-15 21:11:02 +02:00
|
|
|
#SET(QT_DONT_USE_QTGUI TRUE)
|
|
|
|
#SET(QT_USE_QTCONSOLE TRUE)
|
2013-08-13 11:10:45 +02:00
|
|
|
include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
link_directories(${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
configure_file(bin/install_hyperion.sh ${LIBRARY_OUTPUT_PATH} @ONLY)
|
2013-07-31 17:28:01 +02:00
|
|
|
configure_file(config/hyperion.config.json ${LIBRARY_OUTPUT_PATH} @ONLY)
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# Add the source/lib directories
|
|
|
|
add_subdirectory(dependencies)
|
|
|
|
add_subdirectory(libsrc)
|
|
|
|
add_subdirectory(src)
|
2013-08-01 17:08:58 +02:00
|
|
|
add_subdirectory(test)
|
2013-09-09 22:35:03 +02:00
|
|
|
|
|
|
|
# Add the doxygen generation directory
|
|
|
|
add_subdirectory(doc)
|