diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-07-10 20:20:17 +0200 |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-07-10 20:20:17 +0200 |
commit | 1fc4a1e75b32ca92cdf90a13303f476ae571a4b9 (patch) | |
tree | df7bf834fcc3bdd25a2af17e1b4fbb41b4b654d8 /attic | |
parent | bf8355a87df737c025fa37dbfdec8b1ce9be6257 (diff) | |
download | extra-cmake-modules-1fc4a1e75b32ca92cdf90a13303f476ae571a4b9.tar.gz extra-cmake-modules-1fc4a1e75b32ca92cdf90a13303f476ae571a4b9.tar.bz2 |
Remove, simply use set_property(... APPEND ...) instead
Alex
Diffstat (limited to 'attic')
-rw-r--r-- | attic/modules/MacroAdditionalCleanFiles.cmake | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/attic/modules/MacroAdditionalCleanFiles.cmake b/attic/modules/MacroAdditionalCleanFiles.cmake deleted file mode 100644 index 593182fe..00000000 --- a/attic/modules/MacroAdditionalCleanFiles.cmake +++ /dev/null @@ -1,21 +0,0 @@ -# - MACRO_ADDITIONAL_CLEAN_FILES(files...) -# MACRO_OPTIONAL_FIND_PACKAGE( <name> [QUIT] ) - -# Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org> -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - - -MACRO (MACRO_ADDITIONAL_CLEAN_FILES) - GET_DIRECTORY_PROPERTY(_tmp_DIR_PROPS ADDITIONAL_MAKE_CLEAN_FILES ) - - if (_tmp_DIR_PROPS) - set(_tmp_DIR_PROPS ${_tmp_DIR_PROPS} ${ARGN}) - else (_tmp_DIR_PROPS) - set(_tmp_DIR_PROPS ${ARGN}) - endif (_tmp_DIR_PROPS) - - SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${_tmp_DIR_PROPS}") -ENDMACRO (MACRO_ADDITIONAL_CLEAN_FILES) - |