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
9b0a485c
Commit
9b0a485c
authored
Dec 30, 2005
by
Bill Hoffman
Browse files
ENH: fix so verbose is put in the correct place
parent
9b97f433
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmLocalUnixMakefileGenerator3.cxx
View file @
9b0a485c
...
...
@@ -1004,14 +1004,6 @@ cmLocalUnixMakefileGenerator3
<<
"
\n
"
;
}
if
(
m_Makefile
->
IsOn
(
"CMAKE_VERBOSE_MAKEFILE"
))
{
makefileStream
<<
"# Produce verbose output by default.
\n
"
<<
"VERBOSE = 1
\n
"
<<
"
\n
"
;
}
std
::
string
cmakecommand
=
m_Makefile
->
GetRequiredDefinition
(
"CMAKE_COMMAND"
);
makefileStream
...
...
@@ -1197,6 +1189,14 @@ cmLocalUnixMakefileGenerator3
std
::
vector
<
std
::
string
>
commands
;
commands
.
clear
();
std
::
vector
<
std
::
string
>
no_depends
;
if
(
m_Makefile
->
IsOn
(
"CMAKE_VERBOSE_MAKEFILE"
))
{
makefileStream
<<
"# Produce verbose output by default.
\n
"
<<
"VERBOSE = 1
\n
"
<<
"
\n
"
;
}
this
->
WriteMakeRule
(
makefileStream
,
"Suppress display of executed commands."
,
"$(VERBOSE).SILENT"
,
...
...
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