diff options
author | Julian Andres Klode <jak@debian.org> | 2016-08-11 18:09:39 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-08-11 19:51:07 +0200 |
commit | 281383ce1b020013737b28d87988bdf477a90477 (patch) | |
tree | c52ece3d6a32833c7a06dcc5462d5f04e289fcab /doc/CMakeLists.txt | |
parent | 389e8322fcd380d133892bc6f126e56737739fa5 (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/CMakeLists.txt')
-rw-r--r-- | doc/CMakeLists.txt | 5 |
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() |