mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
88fbc4dfde
* make hyperion to singelton. remove arguments for config and hyperion - both are gettable via Hyperion::getInstance * refactor hyperiond * remove qt4 comapt make zeroconf mandatory refactor hyperiond * xbmcchecker is now a singleton * cleanup in hyperiond zeroconf switchable between static and shared linking * fix xbmcchecker
37 lines
1.0 KiB
CMake
37 lines
1.0 KiB
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(hyperion-remote)
|
|
|
|
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")
|
|
|
|
# The following I do not undrstand completely...
|
|
# libQtCore.so uses some hardcoded library path inside which are incorrect after copying the file RPi file system
|
|
# Therefor, an extra path is needed on which to find the required libraries
|
|
LINK_DIRECTORIES(${LINK_DIRECTORIES} ${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
|
|
|
include_directories(${QT_INCLUDES})
|
|
|
|
set(hyperion-remote_HEADERS
|
|
CustomParameter.h
|
|
JsonConnection.h
|
|
ColorTransformValues.h)
|
|
|
|
set(hyperion-remote_SOURCES
|
|
hyperion-remote.cpp
|
|
JsonConnection.cpp)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
${hyperion-remote_HEADERS}
|
|
${hyperion-remote_SOURCES})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
jsoncpp
|
|
getoptPlusPlus
|
|
${QT_LIBRARIES})
|
|
|
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Network)
|
|
|
|
install ( TARGETS ${PROJECT_NAME} DESTINATION "bin" COMPONENT ambilight )
|
|
|