mirror of
https://github.com/raspberrypi/userland.git
synced 2025-12-06 04:49:12 +00:00
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).
7 lines
188 B
CMake
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)
|