Warning, /libraries/kdb/cmake/modules/MacroAdditionalCleanFiles.cmake is written in an unsupported language. File is not indexed.

0001 # - MACRO_ADDITIONAL_CLEAN_FILES(files...)
0002 # MACRO_OPTIONAL_FIND_PACKAGE( <name> [QUIT] )
0003 
0004 # Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org>
0005 #
0006 # Redistribution and use is allowed according to the terms of the BSD license.
0007 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
0008 
0009 
0010 macro (MACRO_ADDITIONAL_CLEAN_FILES)
0011    get_directory_property(_tmp_DIR_PROPS ADDITIONAL_MAKE_CLEAN_FILES )
0012 
0013    if (_tmp_DIR_PROPS)
0014       set(_tmp_DIR_PROPS ${_tmp_DIR_PROPS} ${ARGN})
0015    else ()
0016       set(_tmp_DIR_PROPS ${ARGN})
0017    endif ()
0018 
0019    set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${_tmp_DIR_PROPS}")
0020 endmacro (MACRO_ADDITIONAL_CLEAN_FILES)
0021