From 8da037b9c177dc8055725beac87841f10d4ae80f Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Wed, 8 Feb 2006 20:34:09 +0000 Subject: -remove macro_append_directory_properties() and add macro_additional_clean_files() -remove macro_append_source_files_properties() and add macro_add_file_dependencies() -build kICE as a static library and link to it, instead of including the sources multiple times -remove the -kdemain=main from dcop/, hope this didn't break things on windows some patches from Brad King: -rename the target dcop (the executable) to dcop_executable, otherwise MS Visual Studio complains about multiple targets with the same name , the name of the created executable stays "dcop" -add the dependency of all dcop stubs and skels to dcopidl2cpp, to make sure it is compiled before this rule is executed Alex svn path=/trunk/KDE/kdelibs/; revision=507257 --- modules/MacroAppendSourceFilesProperties.cmake | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 modules/MacroAppendSourceFilesProperties.cmake (limited to 'modules/MacroAppendSourceFilesProperties.cmake') diff --git a/modules/MacroAppendSourceFilesProperties.cmake b/modules/MacroAppendSourceFilesProperties.cmake deleted file mode 100644 index 4d387e20..00000000 --- a/modules/MacroAppendSourceFilesProperties.cmake +++ /dev/null @@ -1,21 +0,0 @@ -# - MACRO_APPEND_SOURCE_FILES_PROPERTIES( PROPERTIES key values...) -# MACRO_OPTIONAL_FIND_PACKAGE( [QUIT] ) - -MACRO(MACRO_APPEND_SOURCE_FILES_PROPERTIES _file _properties _property) - GET_SOURCE_FILE_PROPERTY(_tmp_FILE_PROPS ${_file} ${_property}) - - IF (NOT _tmp_FILE_PROPS) # make sure it's empty not e.g. "NOTFOUND" or "FALSE" - SET(_tmp_FILE_PROPS) - ENDIF (NOT _tmp_FILE_PROPS) - - FOREACH(_value ${ARGN}) - IF (_tmp_FILE_PROPS) - SET(_tmp_FILE_PROPS ${_tmp_FILE_PROPS} ${_value}) - ELSE (_tmp_FILE_PROPS) - SET(_tmp_FILE_PROPS ${_value}) - ENDIF (_tmp_FILE_PROPS) - ENDFOREACH(_value ${ARGN}) - - SET_SOURCE_FILES_PROPERTIES(${_file} ${_properties} ${_property} "${_tmp_FILE_PROPS}") -ENDMACRO(MACRO_APPEND_SOURCE_FILES_PROPERTIES) - -- cgit v1.2.1