summaryrefslogtreecommitdiffstats
path: root/Source/cmSourceFile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-09-13 17:37:45 (GMT)
committerBrad King <brad.king@kitware.com>2007-09-13 17:37:45 (GMT)
commit9f542f4ef78693092652d41ff4de1970e6af6c1d (patch)
treed0020f7e14d876fa612e72398bc10ef243c07c34 /Source/cmSourceFile.cxx
parent782c5c270f4aee955c0868d23e677ba2015d3efd (diff)
downloadCMake-9f542f4ef78693092652d41ff4de1970e6af6c1d.zip
CMake-9f542f4ef78693092652d41ff4de1970e6af6c1d.tar.gz
CMake-9f542f4ef78693092652d41ff4de1970e6af6c1d.tar.bz2
ENH: Added OBJECT_OUTPUTS source file property. Updated PrecompiledHeader test to use it (making the test simpler).
Diffstat (limited to 'Source/cmSourceFile.cxx')
-rw-r--r--Source/cmSourceFile.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx
index c9d0c48..1468869 100644
--- a/Source/cmSourceFile.cxx
+++ b/Source/cmSourceFile.cxx
@@ -402,6 +402,14 @@ void cmSourceFile::DefineProperties(cmake *cm)
"building this source file.");
cm->DefineProperty
+ ("OBJECT_OUTPUTS", cmProperty::SOURCE_FILE,
+ "Additional outputs for a Makefile rule.",
+ "Additional outputs created by compilation of this source file. "
+ "If any of these outputs is missing the object will be recompiled. "
+ "This is supported only on Makefile generators and will be ignored "
+ "on other generators.");
+
+ cm->DefineProperty
("SYMBOLIC", cmProperty::SOURCE_FILE,
"Is this just a name for a rule.",
"If SYMBOLIC (boolean) is set to true the build system will be "