diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 6f90024ec..787e08e49 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -192,6 +192,11 @@ void cmTarget::DefineProperties(cmake *cm) "configuration , " "for example, DEBUG, RELEASE, MINSIZEREL, RELWITHDEBINFO. "); + cm->DefineProperty + ("LINK_FLAGS_", 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)