From: rnv Date: Fri, 17 Apr 2015 10:18:10 +0000 (+0300) Subject: Exclude *.md5 and *.map files from the DEV documentation X-Git-Tag: V7_6_0rc1~9 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3b329d9573166cc73d89dab86d0bcda0f3c2d48d;p=modules%2Fparavis.git Exclude *.md5 and *.map files from the DEV documentation --- diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt index 63434a8a..420ce459 100644 --- a/doc/doxygen/CMakeLists.txt +++ b/doc/doxygen/CMakeLists.txt @@ -27,7 +27,10 @@ ADD_CUSTOM_TARGET(doxy_doc ALL ) INSTALL(CODE "EXECUTE_PROCESS(COMMAND \"${CMAKE_COMMAND}\" --build ${PROJECT_BINARY_DIR} --target doxy_doc)") -INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doc_api/html/ DESTINATION ${SALOME_INSTALL_DOC}/dev/PARAVIS/api) +INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doc_api/html/ + DESTINATION ${SALOME_INSTALL_DOC}/dev/PARAVIS/api + PATTERN "*.md5" EXCLUDE + PATTERN "*.map" EXCLUDE) INSTALL(FILES images/head.png DESTINATION ${SALOME_INSTALL_DOC}/dev/PARAVIS/api) SET(MAKE_CLEAN_FILES doc_api)