2017-08-01 15:42:36 +02:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2016-03-10 12:22:44 +01:00
|
|
|
project(hyperion-remote)
|
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
2016-03-10 12:22:44 +01:00
|
|
|
|
|
|
|
# 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
|
2016-08-08 00:17:00 +02:00
|
|
|
# Therefore, an extra path is needed on which to find the required libraries
|
|
|
|
IF ( EXISTS ${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf )
|
|
|
|
LINK_DIRECTORIES(${LINK_DIRECTORIES} ${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
|
|
|
ENDIF()
|
2016-03-10 12:22:44 +01:00
|
|
|
|
|
|
|
set(hyperion-remote_HEADERS
|
2016-08-28 15:10:43 +02:00
|
|
|
JsonConnection.h)
|
2016-03-10 12:22:44 +01:00
|
|
|
|
|
|
|
set(hyperion-remote_SOURCES
|
|
|
|
hyperion-remote.cpp
|
|
|
|
JsonConnection.cpp)
|
|
|
|
|
2016-03-09 07:03:17 +01:00
|
|
|
add_executable(${PROJECT_NAME}
|
2016-03-10 12:22:44 +01:00
|
|
|
${hyperion-remote_HEADERS}
|
|
|
|
${hyperion-remote_SOURCES})
|
|
|
|
|
2016-03-09 07:03:17 +01:00
|
|
|
target_link_libraries(${PROJECT_NAME}
|
2016-09-13 17:39:01 +02:00
|
|
|
effectengine
|
|
|
|
commandline
|
2017-08-01 15:42:36 +02:00
|
|
|
Qt5::Gui
|
|
|
|
Qt5::Core
|
|
|
|
Qt5::Network)
|
2016-03-10 12:22:44 +01:00
|
|
|
|
2016-08-20 16:37:45 +02:00
|
|
|
install ( TARGETS ${PROJECT_NAME} DESTINATION "share/hyperion/bin/" COMPONENT "${PLATFORM}" )
|
2016-11-20 22:57:19 +01:00
|
|
|
|
|
|
|
if(CMAKE_HOST_UNIX)
|
|
|
|
install(CODE "EXECUTE_PROCESS(COMMAND ln -sf \"../share/hyperion/bin/${PROJECT_NAME}\" \"${CMAKE_BINARY_DIR}/symlink_${PROJECT_NAME}\" )" COMPONENT "${PLATFORM}" )
|
|
|
|
install(FILES "${CMAKE_BINARY_DIR}/symlink_${PROJECT_NAME}" DESTINATION "bin" RENAME "${PROJECT_NAME}" COMPONENT "${PLATFORM}" )
|
|
|
|
install(CODE "FILE (REMOVE ${CMAKE_BINARY_DIR}/symlink_${PROJECT_NAME} )" COMPONENT "${PLATFORM}" )
|
|
|
|
endif(CMAKE_HOST_UNIX)
|