summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-08-11 18:09:39 +0200
committerJulian Andres Klode <jak@debian.org>2016-08-11 19:51:07 +0200
commit281383ce1b020013737b28d87988bdf477a90477 (patch)
treec52ece3d6a32833c7a06dcc5462d5f04e289fcab /doc
parent389e8322fcd380d133892bc6f126e56737739fa5 (diff)
CMake: Exclude .md5 and .map doxygen files from install
This is much better than removing them in debian/rules. Gbp-Dch: ignore
Diffstat (limited to 'doc')
-rw-r--r--doc/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index fb4a9a3a4..a1491428f 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -56,7 +56,10 @@ add_custom_target(apt-doxygen ALL
)
install(DIRECTORY ${PROJECT_BINARY_DIR}/doc/doxygen/html
- DESTINATION ${CMAKE_INSTALL_DOCDIR}/../libapt-pkg-doc)
+ DESTINATION ${CMAKE_INSTALL_DOCDIR}/../libapt-pkg-doc
+ PATTERN "*.map" EXCLUDE
+ PATTERN "*.md5" EXCLUDE
+)
endif()