From 281383ce1b020013737b28d87988bdf477a90477 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Thu, 11 Aug 2016 18:09:39 +0200 Subject: CMake: Exclude .md5 and .map doxygen files from install This is much better than removing them in debian/rules. Gbp-Dch: ignore --- doc/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'doc/CMakeLists.txt') 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() -- cgit v1.2.3