125 Star 0 Fork 3

src-openEuler/automoc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-fix-make-clean-it-s-SET_directory_properties-and-not.patch 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
ultra_planet 提交于 2020-03-12 10:05 . package init
From 1948ee845726be15861f9f84a745b30ecb18051c Mon Sep 17 00:00:00 2001
From: Matthias Kretz <[email protected]>
Date: Fri, 6 Feb 2009 08:26:43 +0000
Subject: [PATCH 01/33] fix make clean: it's SET_directory_properties and not
ADD_directory_properties.
svn path=/trunk/kdesupport/automoc/; revision=922011
---
Automoc4Config.cmake | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Automoc4Config.cmake b/Automoc4Config.cmake
index e79cf8c..5fcab74 100644
--- a/Automoc4Config.cmake
+++ b/Automoc4Config.cmake
@@ -198,7 +198,9 @@ macro(_ADD_AUTOMOC4_TARGET _target_NAME _SRCS)
endif(_AUTOMOC4_EXECUTABLE_DEP)
set_source_files_properties(${_automoc_source} PROPERTIES GENERATED TRUE)
- set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES ${_automoc_source})
+ get_directory_property(_extra_clean_files ADDITIONAL_MAKE_CLEAN_FILES)
+ list(APPEND _extra_clean_files "${_automoc_source}")
+ set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${_extra_clean_files}")
set(${_SRCS} ${_automoc_source} ${${_SRCS}})
endif(_moc_files)
endmacro(_ADD_AUTOMOC4_TARGET)
--
2.4.3
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/automoc.git
[email protected]:src-openeuler/automoc.git
src-openeuler
automoc
automoc
master

搜索帮助