Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
17dbc31a
Commit
17dbc31a
authored
Jan 21, 2008
by
Brad King
Browse files
BUG: Added missing documentation of LINK_FLAGS_<CONFIG> property.
parent
9a16d015
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmTarget.cxx
View file @
17dbc31a
...
...
@@ -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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment