CMake: Clarify SUFFIX target property documentation.

Make it clear that the property applies to libs, modules
and exes, not just libs.
This commit is contained in:
David Cole 2012-04-02 10:00:27 -04:00
parent 0454057f8a
commit fa083753f1
1 changed files with 3 additions and 2 deletions

View File

@ -847,9 +847,10 @@ void cmTarget::DefineProperties(cmake *cm)
cm->DefineProperty
("SUFFIX", cmProperty::TARGET,
"What comes after the library name.",
"What comes after the target name.",
"A target property that can be set to override the suffix "
"(such as \".so\") on a library name.");
"(such as \".so\" or \".exe\") on the name of a library, module or "
"executable.");
cm->DefineProperty
("TYPE", cmProperty::TARGET,