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
f18bb42b
Commit
f18bb42b
authored
Jun 04, 2001
by
Bill Hoffman
Browse files
ENH: print all arguments
parent
c57d16eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmMessageCommand.cxx
View file @
f18bb42b
...
...
@@ -52,7 +52,14 @@ bool cmMessageCommand::Invoke(std::vector<std::string>& args)
if
(
args
.
size
()
>=
2
)
{
cmSystemTools
::
Message
(
args
[
0
].
c_str
(),
args
[
1
].
c_str
());
std
::
string
message
;
std
::
vector
<
std
::
string
>::
iterator
i
=
args
.
begin
();
++
i
;
for
(;
i
!=
args
.
end
();
++
i
)
{
message
+=
*
i
;
}
cmSystemTools
::
Message
(
args
[
0
].
c_str
(),
message
.
c_str
());
}
else
{
...
...
Write
Preview
Markdown
is supported
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