From: Romain Forlot Date: Fri, 7 Jul 2017 10:20:19 +0000 (+0200) Subject: Add configured file to files to clean up with make X-Git-Tag: dab_3.99.3~21 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=8c2d06a6f814450caa7c9dffbb487415507f209f;p=apps%2Fapp-templates.git Add configured file to files to clean up with make Change-Id: Ibef0a4628bf3fe0b830f19fc8aa2f3e5d4b1ff19 Signed-off-by: Romain Forlot --- diff --git a/cmake/cmake.d/02-macros.cmake b/cmake/cmake.d/02-macros.cmake index 7444214..2a014a1 100644 --- a/cmake/cmake.d/02-macros.cmake +++ b/cmake/cmake.d/02-macros.cmake @@ -44,6 +44,7 @@ macro(configure_files_in_dir dir) string(REGEX REPLACE "target" "${RSYNC_TARGET}" destinationfile ${filename}) string(REGEX REPLACE ".in$" "" destinationfile ${destinationfile}) configure_file(${file} ${CMAKE_CURRENT_BINARY_DIR}/target/${destinationfile}) + set(ADDITIONAL_MAKE_CLEAN_FILES, "${destinationfile}") endforeach() endmacro(configure_files_in_dir)