BUG: Added missing documentation of LINK_FLAGS_<CONFIG> property.
This commit is contained in:
parent
9a16d01591
commit
17dbc31ad4
|
@ -192,6 +192,11 @@ void cmTarget::DefineProperties(cmake *cm)
|
||||||
"configuration <CONFIG>, "
|
"configuration <CONFIG>, "
|
||||||
"for example, DEBUG, RELEASE, MINSIZEREL, RELWITHDEBINFO. ");
|
"for example, DEBUG, RELEASE, MINSIZEREL, RELWITHDEBINFO. ");
|
||||||
|
|
||||||
|
cm->DefineProperty
|
||||||
|
("LINK_FLAGS_<CONFIG>", cmProperty::TARGET,
|
||||||
|
"Per-configuration linker flags for a target.",
|
||||||
|
"This is the configuration-specific version of LINK_FLAGS.");
|
||||||
|
|
||||||
cm->DefineProperty
|
cm->DefineProperty
|
||||||
("LINKER_LANGUAGE", cmProperty::TARGET,
|
("LINKER_LANGUAGE", cmProperty::TARGET,
|
||||||
"What tool to use for linking, based on language.",
|
"What tool to use for linking, based on language.",
|
||||||
|
@ -393,7 +398,6 @@ void cmTarget::DefineProperties(cmake *cm)
|
||||||
// define some properties without documentation
|
// define some properties without documentation
|
||||||
cm->DefineProperty("DEBUG_OUTPUT_NAME", cmProperty::TARGET,0,0);
|
cm->DefineProperty("DEBUG_OUTPUT_NAME", cmProperty::TARGET,0,0);
|
||||||
cm->DefineProperty("RELEASE_OUTPUT_NAME", cmProperty::TARGET,0,0);
|
cm->DefineProperty("RELEASE_OUTPUT_NAME", cmProperty::TARGET,0,0);
|
||||||
cm->DefineProperty("LINK_FLAGS_DEBUG", cmProperty::TARGET,0,0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmTarget::SetType(TargetType type, const char* name)
|
void cmTarget::SetType(TargetType type, const char* name)
|
||||||
|
|
Loading…
Reference in New Issue