diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-04-10 13:54:01 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-04-10 13:54:01 (GMT) |
commit | 8b0c61c322f939f2d718e71c5c796df9d58c6cc2 (patch) | |
tree | 97ac5ffb8706d20e87523b667ccf7769c08db381 /Source/cmTarget.cxx | |
parent | 5415b65067ed2eabaa1bb64a50ced230074dab53 (diff) | |
download | CMake-8b0c61c322f939f2d718e71c5c796df9d58c6cc2.zip CMake-8b0c61c322f939f2d718e71c5c796df9d58c6cc2.tar.gz CMake-8b0c61c322f939f2d718e71c5c796df9d58c6cc2.tar.bz2 |
ENH: added internal target property for the name of the project file
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index c4dc29e..5b15428 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -276,6 +276,12 @@ void cmTarget::DefineProperties(cmake *cm) "All Windows-based systems including Cygwin are DLL platforms."); cm->DefineProperty + ("GENERATOR_FILE_NAME", cmProperty::TARGET, + "Generator's file for this target.", + "An internal property used by some generators to record the name of " + "project or dsp file associated with this target."); + + cm->DefineProperty ("OBJECT_FILES", cmProperty::TARGET, "Used to get the resulting list of object files that make up a " "target.", |