Files
userland/host_applications/linux/apps/tvservice/CMakeLists.txt
Dave Jones 45a0022ac6 Add man-pages for most commands
I've spent a little time going through the excellent raspberry pi
documentation site in order to build some man-pages for most of the
utilities in the suite. Note that not all utilities are covered here
(notably vchiq_test, mmal_vc_diag are missing) but I think it covers the
most commonly used utilities.

I've also included some auxilliary man-pages (in section 7) for
information relevant to utilities like vcmailbox (covering things like
the mailbox info from the wiki-page, and the OTP registers from the
documentation site).
2021-04-26 12:33:16 +01:00

7 lines
188 B
CMake

add_executable(tvservice tvservice.c)
target_link_libraries(tvservice vchostif)
install(TARGETS tvservice
RUNTIME DESTINATION bin)
install(FILES tvservice.1 DESTINATION man/man1)