From 7305c218535f750d6601902b4997b77ba1effb38 Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Sun, 14 Oct 2018 15:54:56 +0200 Subject: [PATCH] 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. --- manual/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manual/CMakeLists.txt b/manual/CMakeLists.txt index 47e6fdd..bdbd6c9 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 +) -- 2.30.2