Files
userland/host_applications/linux/apps/tvservice/CMakeLists.txt
2021-09-28 15:10:41 +01:00

8 lines
286 B
CMake

include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/libs/bcm_host/include)
add_executable(tvservice tvservice.c)
target_link_libraries(tvservice vchostif bcm_host)
install(TARGETS tvservice
RUNTIME DESTINATION bin)
install(FILES tvservice.1 DESTINATION man/man1)