2019-01-06 19:49:56 +01:00
|
|
|
find_package(PythonLibs 3.4 REQUIRED)
|
2018-12-27 23:11:32 +01:00
|
|
|
include_directories(${PYTHON_INCLUDE_DIRS} ${PYTHON_INCLUDE_DIRS}/..)
|
|
|
|
|
2017-08-01 15:42:36 +02:00
|
|
|
add_executable(hyperiond
|
2017-01-22 14:31:11 +01:00
|
|
|
hyperiond.h
|
2017-08-01 17:29:47 +02:00
|
|
|
systray.h
|
2016-12-23 19:37:35 +01:00
|
|
|
hyperiond.cpp
|
2017-08-01 17:29:47 +02:00
|
|
|
systray.cpp
|
2016-12-23 19:37:35 +01:00
|
|
|
main.cpp
|
|
|
|
)
|
2014-09-08 16:16:02 +02:00
|
|
|
|
|
|
|
target_link_libraries(hyperiond
|
2016-08-28 15:10:43 +02:00
|
|
|
commandline
|
2014-09-08 16:16:02 +02:00
|
|
|
hyperion
|
|
|
|
effectengine
|
|
|
|
jsonserver
|
2016-06-20 08:38:12 +02:00
|
|
|
udplistener
|
2018-12-28 18:12:45 +01:00
|
|
|
flatbufserver
|
2018-12-27 23:11:32 +01:00
|
|
|
webserver
|
2016-06-17 01:25:40 +02:00
|
|
|
bonjour
|
2018-12-30 22:07:53 +01:00
|
|
|
ssdp
|
2018-12-27 23:11:32 +01:00
|
|
|
python
|
2018-12-31 15:48:29 +01:00
|
|
|
resources
|
2018-12-27 23:11:32 +01:00
|
|
|
${PYTHON_LIBRARIES}
|
2014-09-08 16:16:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if (ENABLE_DISPMANX)
|
2017-09-02 22:26:22 +02:00
|
|
|
IF ( "${PLATFORM}" MATCHES rpi)
|
|
|
|
find_package(BCM REQUIRED)
|
|
|
|
include_directories(${BCM_INCLUDE_DIRS})
|
|
|
|
ELSE()
|
|
|
|
SET(BCM_INCLUDE_DIRS "")
|
|
|
|
SET(BCM_LIBRARIES "")
|
|
|
|
ENDIF()
|
2014-09-08 16:16:02 +02:00
|
|
|
target_link_libraries(hyperiond dispmanx-grabber)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif ()
|
2014-09-08 16:16:02 +02:00
|
|
|
|
2015-01-18 00:04:45 +01:00
|
|
|
if (ENABLE_FB)
|
|
|
|
target_link_libraries(hyperiond framebuffer-grabber)
|
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_OSX)
|
|
|
|
target_link_libraries(hyperiond osx-grabber)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif ()
|
2015-01-24 23:42:22 +01:00
|
|
|
|
2014-09-08 16:16:02 +02:00
|
|
|
if (ENABLE_V4L2)
|
|
|
|
target_link_libraries(hyperiond v4l2-grabber)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif ()
|
2014-09-08 16:16:02 +02:00
|
|
|
|
2015-08-20 09:51:44 +02:00
|
|
|
if (ENABLE_AMLOGIC)
|
|
|
|
target_link_libraries(hyperiond amlogic-grabber)
|
2016-05-22 00:27:06 +02:00
|
|
|
endif ()
|
2015-08-20 09:51:44 +02:00
|
|
|
|
2016-07-24 15:18:34 +02:00
|
|
|
if (ENABLE_X11)
|
|
|
|
target_link_libraries(hyperiond x11-grabber )
|
|
|
|
endif ()
|
|
|
|
|
2019-01-06 19:49:56 +01:00
|
|
|
if (ENABLE_QT)
|
|
|
|
target_link_libraries(hyperiond qt-grabber )
|
|
|
|
endif ()
|
2017-08-01 17:29:47 +02:00
|
|
|
|
2016-08-20 16:37:45 +02:00
|
|
|
install ( TARGETS hyperiond DESTINATION "share/hyperion/bin/" COMPONENT "${PLATFORM}" )
|
|
|
|
install ( DIRECTORY ${CMAKE_SOURCE_DIR}/bin/service DESTINATION "share/hyperion/" COMPONENT "${PLATFORM}" )
|
2016-11-20 22:57:19 +01:00
|
|
|
install ( FILES ${CMAKE_SOURCE_DIR}/effects/readme.txt DESTINATION "share/hyperion/effects" COMPONENT "${PLATFORM}" )
|
2018-12-31 15:48:29 +01:00
|
|
|
install ( FILES ${CMAKE_SOURCE_DIR}/resources/icons/hyperion-icon-32px.png DESTINATION "share/hyperion/icons" COMPONENT "${PLATFORM}" )
|
2016-11-20 22:57:19 +01:00
|
|
|
|
|
|
|
if(CMAKE_HOST_UNIX)
|
|
|
|
install(CODE "EXECUTE_PROCESS(COMMAND ln -sf \"../share/hyperion/bin/hyperiond\" \"${CMAKE_BINARY_DIR}/symlink_hyperiond\" )" COMPONENT "${PLATFORM}" )
|
|
|
|
install(FILES ${CMAKE_BINARY_DIR}/symlink_hyperiond DESTINATION "bin" RENAME hyperiond COMPONENT "${PLATFORM}" )
|
|
|
|
install(CODE "FILE (REMOVE ${CMAKE_BINARY_DIR}/symlink_hyperiond )" COMPONENT "${PLATFORM}" )
|
|
|
|
endif(CMAKE_HOST_UNIX)
|