mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
No functional changes - except protobuffer is mandatory and not optional now. Former-commit-id: 1e6347e708707cc388cdedb8d0352a9f017030b8
29 lines
478 B
CMake
29 lines
478 B
CMake
add_subdirectory(hyperiond)
|
|
add_subdirectory(hyperion-remote)
|
|
|
|
# The following clients depend on the protobuf library
|
|
if (ENABLE_AMLOGIC)
|
|
add_subdirectory(hyperion-aml)
|
|
endif()
|
|
|
|
if(ENABLE_V4L2)
|
|
add_subdirectory(hyperion-v4l2)
|
|
endif()
|
|
|
|
if(ENABLE_X11)
|
|
add_subdirectory(hyperion-x11)
|
|
endif()
|
|
|
|
if(ENABLE_DISPMANX)
|
|
add_subdirectory(hyperion-dispmanx)
|
|
endif()
|
|
|
|
if(ENABLE_FB)
|
|
add_subdirectory(hyperion-framebuffer)
|
|
endif()
|
|
|
|
if(ENABLE_OSX)
|
|
add_subdirectory(hyperion-osx)
|
|
endif()
|
|
|