BUG: Added missing documentation of LINK_FLAGS_<CONFIG> property.

This commit is contained in:
Brad King 2008-01-21 13:59:10 -05:00
parent 9a16d01591
commit 17dbc31ad4
1 changed files with 5 additions and 1 deletions

View File

@ -192,6 +192,11 @@ void cmTarget::DefineProperties(cmake *cm)
"configuration <CONFIG>, "
"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
("LINKER_LANGUAGE", cmProperty::TARGET,
"What tool to use for linking, based on language.",
@ -393,7 +398,6 @@ void cmTarget::DefineProperties(cmake *cm)
// define some properties without documentation
cm->DefineProperty("DEBUG_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)