mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
5497fbf577
Former-commit-id: e459cdfe6273ad2bfee92d2d190801ebdc691a5c
36 lines
691 B
CMake
36 lines
691 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_FB)
|
|
target_link_libraries(hyperiond framebuffer-grabber)
|
|
endif (ENABLE_FB)
|
|
|
|
if (ENABLE_OSX)
|
|
target_link_libraries(hyperiond osx-grabber)
|
|
endif (ENABLE_OSX)
|
|
|
|
if (ENABLE_V4L2)
|
|
target_link_libraries(hyperiond v4l2-grabber)
|
|
endif (ENABLE_V4L2)
|
|
|
|
if (ENABLE_AMLOGIC)
|
|
target_link_libraries(hyperiond amlogic-grabber)
|
|
endif (ENABLE_AMLOGIC)
|
|
|
|
if (ENABLE_PROTOBUF)
|
|
target_link_libraries(hyperiond protoserver)
|
|
endif (ENABLE_PROTOBUF)
|