mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
3c65b82ac1
One dependency less for users that only use DISPMANX grabbing Former-commit-id: 24ea0480e3798bab692e75d82ddb9f5eccfa03c5
24 lines
427 B
CMake
24 lines
427 B
CMake
|
|
add_executable(hyperiond
|
|
hyperiond.cpp)
|
|
|
|
target_link_libraries(hyperiond
|
|
hyperion
|
|
xbmcvideochecker
|
|
effectengine
|
|
jsonserver
|
|
boblightserver
|
|
)
|
|
|
|
if (ENABLE_DISPMANX)
|
|
target_link_libraries(hyperiond dispmanx-grabber)
|
|
endif (ENABLE_DISPMANX)
|
|
|
|
if (ENABLE_V4L2)
|
|
target_link_libraries(hyperiond v4l2-grabber)
|
|
endif (ENABLE_V4L2)
|
|
|
|
if (ENABLE_PROTOBUF)
|
|
target_link_libraries(hyperiond protoserver)
|
|
endif (ENABLE_PROTOBUF)
|