diff options
author | Alexander Neundorf <neundorf@kde.org> | 2006-02-08 20:34:09 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2006-02-08 20:34:09 +0000 |
commit | 8da037b9c177dc8055725beac87841f10d4ae80f (patch) | |
tree | cf40021a0b43b8ec85114b1254b1545cea762b7f /modules/MacroAppendDirectoryProperties.cmake | |
parent | 8ad0121573a771ded4fd6dccc754eb5cfd3661af (diff) | |
download | extra-cmake-modules-8da037b9c177dc8055725beac87841f10d4ae80f.tar.gz extra-cmake-modules-8da037b9c177dc8055725beac87841f10d4ae80f.tar.bz2 |
-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
Diffstat (limited to 'modules/MacroAppendDirectoryProperties.cmake')
-rw-r--r-- | modules/MacroAppendDirectoryProperties.cmake | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/MacroAppendDirectoryProperties.cmake b/modules/MacroAppendDirectoryProperties.cmake deleted file mode 100644 index 2fed5a55..00000000 --- a/modules/MacroAppendDirectoryProperties.cmake +++ /dev/null @@ -1,19 +0,0 @@ -# - MACRO_APPEND_DIRECTORY_PROPERTIES(PROPERTIES key values...) -# MACRO_OPTIONAL_FIND_PACKAGE( <name> [QUIT] ) - -MACRO(MACRO_APPEND_DIRECTORY_PROPERTIES _properties _property) - GET_DIRECTORY_PROPERTY(_tmp_DIR_PROPS ${_property} ) - IF (NOT _tmp_DIR_PROPS) - SET(_tmp_DIR_PROPS) - ENDIF (NOT _tmp_DIR_PROPS) - FOREACH(_value ${ARGN}) - IF (_tmp_DIR_PROPS) - SET(_tmp_DIR_PROPS ${_tmp_DIR_PROPS} ${_value}) - ELSE (_tmp_DIR_PROPS) - SET(_tmp_DIR_PROPS ${_value}) - ENDIF (_tmp_DIR_PROPS) - ENDFOREACH(_value ${ARGN}) - - SET_DIRECTORY_PROPERTIES(${_properties} ${_property} "${_tmp_DIR_PROPS}") -ENDMACRO(MACRO_APPEND_DIRECTORY_PROPERTIES) - |