Skip to content
GitLab
Menu
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
1830690a
Commit
1830690a
authored
Oct 15, 2001
by
Bill Hoffman
Browse files
ENH: expand variables in message command output
parent
7d907c8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmMessageCommand.cxx
View file @
1830690a
...
@@ -49,7 +49,8 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args)
...
@@ -49,7 +49,8 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args)
this
->
SetError
(
"called with incorrect number of arguments"
);
this
->
SetError
(
"called with incorrect number of arguments"
);
return
false
;
return
false
;
}
}
std
::
string
arg0
=
args
[
0
];
m_Makefile
->
ExpandVariablesInString
(
arg0
);
if
(
args
.
size
()
>=
2
)
if
(
args
.
size
()
>=
2
)
{
{
std
::
string
message
;
std
::
string
message
;
...
@@ -59,11 +60,12 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args)
...
@@ -59,11 +60,12 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args)
{
{
message
+=
*
i
;
message
+=
*
i
;
}
}
cmSystemTools
::
Message
(
args
[
0
].
c_str
(),
message
.
c_str
());
m_Makefile
->
ExpandVariablesInString
(
message
);
cmSystemTools
::
Message
(
arg0
.
c_str
(),
message
.
c_str
());
}
}
else
else
{
{
cmSystemTools
::
Message
(
arg
s
[
0
]
.
c_str
());
cmSystemTools
::
Message
(
arg
0
.
c_str
());
}
}
return
true
;
return
true
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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