From: Gerhard Sittig Date: Sun, 14 Oct 2018 13:54:56 +0000 (+0200) Subject: manual: install manual conversion result files generated by cmake X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=7305c218535f750d6601902b4997b77ba1effb38;ds=sidebyside manual: install manual conversion result files generated by cmake Install the (optionally generated) HTML and PDF manual files. Absence of the files is non-fatal. --- diff --git a/manual/CMakeLists.txt b/manual/CMakeLists.txt index 47e6fdda..bdbd6c91 100644 --- a/manual/CMakeLists.txt +++ b/manual/CMakeLists.txt @@ -51,3 +51,10 @@ add_custom_target(manual-pdf ) add_custom_target(manual) add_dependencies(manual manual-html manual-pdf) + +install( + FILES ${MANUAL_OUT_HTML} ${MANUAL_OUT_PDF} + DESTINATION "share/doc/pulseview" + PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ + OPTIONAL +)