From 17dbc31ad4854eaa00c9be9825d1829f9fcc0047 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 21 Jan 2008 13:59:10 -0500 Subject: [PATCH] BUG: Added missing documentation of LINK_FLAGS_ property. --- Source/cmTarget.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)