hyperion.ng/src/CMakeLists.txt
LordGrey 5cd3881067
Hyperion Light updates (#1434)
* Hyperion Light - Allow hyperion remote as component

* Fix missing guard

* NSIS installation via Choco removed because already installed on windows server 2022

* Correct CMAKEList defaults

* Align package creation with build rules for components

* Fix Copy/Paste issue

Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-03-05 15:18:01 +01:00

39 lines
837 B
CMake

add_subdirectory(hyperiond)
# The following binaries are just compiled if requested
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()