diff options
author | Brad King <brad.king@kitware.com> | 2003-02-14 23:47:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-02-14 23:47:16 (GMT) |
commit | a02574158d178615cf8fd642695e5099b6041049 (patch) | |
tree | df9f52770e9c2ff771988ae1a91ec0b2287548da /Source/cmGetTargetPropertyCommand.h | |
parent | dec0b5106611cbccd1f75c1fa3371d66bdd69a47 (diff) | |
download | CMake-a02574158d178615cf8fd642695e5099b6041049.zip CMake-a02574158d178615cf8fd642695e5099b6041049.tar.gz CMake-a02574158d178615cf8fd642695e5099b6041049.tar.bz2 |
ENH: Cleaned up documentation and formatted it for use by cmDocumentation.
Diffstat (limited to 'Source/cmGetTargetPropertyCommand.h')
-rw-r--r-- | Source/cmGetTargetPropertyCommand.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/cmGetTargetPropertyCommand.h b/Source/cmGetTargetPropertyCommand.h index 52075aa..4c819ef 100644 --- a/Source/cmGetTargetPropertyCommand.h +++ b/Source/cmGetTargetPropertyCommand.h @@ -44,7 +44,7 @@ public: */ virtual const char* GetTerseDocumentation() { - return "Get a property for a file"; + return "Get a property from a target."; } /** @@ -53,10 +53,12 @@ public: virtual const char* GetFullDocumentation() { return - "GET_TARGET_PROPERTY(VAR target property) " - "Get a property from a source file. The value of the property is " - " stored in the variable VAR. If the property is not found, var " - "will be set to NOT_FOUND"; + " GET_TARGET_PROPERTY(VAR target property)\n" + "Get a property from a target. The value of the property is " + "stored in the variable VAR. If the property is not found, var " + "will be set to NOT_FOUND. Use SET_TARGET_PROPERTIES to set " + "property values. Properties are usually used to control how " + "a target is built."; } cmTypeMacro(cmGetTargetPropertyCommand, cmCommand); |