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
Brad King
CMake
Commits
513f7d18
Commit
513f7d18
authored
Aug 19, 2008
by
Bill Hoffman
Browse files
BUG: fix for 7496, do not just report configure done when there is an error during configure
parent
1bda4656
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmGlobalGenerator.cxx
View file @
513f7d18
...
@@ -764,7 +764,12 @@ void cmGlobalGenerator::Configure()
...
@@ -764,7 +764,12 @@ void cmGlobalGenerator::Configure()
if
(
!
this
->
CMakeInstance
->
GetScriptMode
()
)
if
(
!
this
->
CMakeInstance
->
GetScriptMode
()
)
{
{
this
->
CMakeInstance
->
UpdateProgress
(
"Configuring done"
,
-
1
);
const
char
*
msg
=
"Configuring done"
;
if
(
cmSystemTools
::
GetErrorOccuredFlag
())
{
msg
=
"Configuring incomplete, errors occurred!"
;
}
this
->
CMakeInstance
->
UpdateProgress
(
msg
,
-
1
);
}
}
}
}
...
...
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