summaryrefslogtreecommitdiffstats
path: root/doc/html
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-07-04 17:55:47 +0200
committerSlávek Banko <slavek.banko@axis.cz>2020-07-04 17:55:47 +0200
commit215dbe5916e4024ce50040ae715570f9781a035a (patch)
tree8c06d5969a7efb42c6bfd76a64cc9152db9da8ba /doc/html
parent17919ef00efa3b474c5d8387feaa89602d5d2bb2 (diff)
downloadkdiff3-215dbe5916e4024ce50040ae715570f9781a035a.tar.gz
kdiff3-215dbe5916e4024ce50040ae715570f9781a035a.zip
Add installation of png files for html documentation.
Clean up unused CMakeLists.txt, which have been replaced by common cmake rules for documentation. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'doc/html')
-rw-r--r--doc/html/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/html/CMakeLists.txt b/doc/html/CMakeLists.txt
index 21b72be..81a1f35 100644
--- a/doc/html/CMakeLists.txt
+++ b/doc/html/CMakeLists.txt
@@ -1,6 +1,12 @@
file( GLOB _htmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.html )
+file(
+ GLOB _pngs
+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/../en/*.png
+)
+
install(
- FILES ${_htmls}
+ FILES ${_htmls} ${_pngs}
DESTINATION ${SHARE_INSTALL_PREFIX}/doc/${PROJECT_NAME}/html
)