mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
19 lines
420 B
CMake
19 lines
420 B
CMake
add_subdirectory(hyperiond)
|
|
add_subdirectory(hyperion-remote)
|
|
|
|
# The following clients depend on the protobuf library
|
|
if(ENABLE_PROTOBUF)
|
|
if (ENABLE_AMLOGIC)
|
|
add_subdirectory(hyperion-aml)
|
|
endif()
|
|
# Add the 'Video 4 Linux' grabber if it is enabled
|
|
if(ENABLE_V4L2)
|
|
add_subdirectory(hyperion-v4l2)
|
|
endif()
|
|
|
|
# Add the X11 grabber if it is enabled
|
|
if(ENABLE_X11)
|
|
add_subdirectory(hyperion-x11)
|
|
endif()
|
|
endif()
|