diff options
author | Brad King <brad.king@kitware.com> | 2005-09-21 17:31:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-09-21 17:31:43 (GMT) |
commit | c59d56f653171eea241179c45dde1c0f0e9606be (patch) | |
tree | 89c48e60305ddd7261b4df18145684039c9c062b /Source/cmGetTargetPropertyCommand.h | |
parent | 059f62c5ea04ccb699e0cde7127232fe607d16a6 (diff) | |
download | CMake-c59d56f653171eea241179c45dde1c0f0e9606be.zip CMake-c59d56f653171eea241179c45dde1c0f0e9606be.tar.gz CMake-c59d56f653171eea241179c45dde1c0f0e9606be.tar.bz2 |
BUG: Corrected and updated documentation of the -P option, -C option, GET_TARGET_PROPERTY command, and GET_SOURCE_FILE_PROPERTY command.
Diffstat (limited to 'Source/cmGetTargetPropertyCommand.h')
-rw-r--r-- | Source/cmGetTargetPropertyCommand.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmGetTargetPropertyCommand.h b/Source/cmGetTargetPropertyCommand.h index b7ef94c..2f5a9d9 100644 --- a/Source/cmGetTargetPropertyCommand.h +++ b/Source/cmGetTargetPropertyCommand.h @@ -53,19 +53,19 @@ public: { return " GET_TARGET_PROPERTY(VAR target property)\n" - "Get a property from a target. The value of the property is " + "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 " + "will be set to \"NOTFOUND\". Use SET_TARGET_PROPERTIES to set " "property values. Properties are usually used to control how " - "a target is built. The read-only property \"LOCATION\" specifies " + "a target is built.\n" + "The read-only property \"LOCATION\" specifies " "the full path to the file on disk that will be created for the " "target. This is very useful for executable targets to get " "the path to the executable file for use in a custom command. " - "the path to the executable file for use in a custom command.\n" "The read-only property \"TYPE\" returns which type the specified " "target has (EXECUTABLE, STATIC_LIBRARY, SHARED_LIBRARY, " - "MODULE_LIBRARY, UTILITY, INSTALL_FILES or INSTALL_PROGRAMS)." - "This command can get properties for any target so far created. " + "MODULE_LIBRARY, UTILITY, INSTALL_FILES or INSTALL_PROGRAMS). " + "This command can get properties for any target so far created.\n" "The targets do not need to be in the current CMakeLists.txt file."; } |