mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
39 lines
834 B
CMake
39 lines
834 B
CMake
add_subdirectory(hyperiond)
|
|
|
|
# The following binaries are just compiled ifrequested
|
|
if(ENABLE_REMOTE_CTL)
|
|
add_subdirectory(hyperion-remote)
|
|
endif()
|
|
|
|
if(ENABLE_AMLOGIC AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-aml)
|
|
endif()
|
|
|
|
if(ENABLE_V4L2 AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-v4l2)
|
|
endif()
|
|
|
|
if(ENABLE_X11 AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-x11)
|
|
endif()
|
|
|
|
if(ENABLE_XCB AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-xcb)
|
|
endif()
|
|
|
|
if(ENABLE_DISPMANX AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-dispmanx)
|
|
endif()
|
|
|
|
if(ENABLE_FB AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-framebuffer)
|
|
endif()
|
|
|
|
if(ENABLE_QT AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-qt)
|
|
endif()
|
|
|
|
if(ENABLE_OSX AND ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(hyperion-osx)
|
|
endif()
|