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:
parent
0454057f8a
commit
fa083753f1
|
@ -847,9 +847,10 @@ void cmTarget::DefineProperties(cmake *cm)
|
||||||
|
|
||||||
cm->DefineProperty
|
cm->DefineProperty
|
||||||
("SUFFIX", cmProperty::TARGET,
|
("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 "
|
"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
|
cm->DefineProperty
|
||||||
("TYPE", cmProperty::TARGET,
|
("TYPE", cmProperty::TARGET,
|
||||||
|
|
Loading…
Reference in New Issue