Merge topic 'cmake-gui-interrupt-error'
52ec845
cmake-gui: Fix error status when interrupted.
This commit is contained in:
commit
a2e547cec7
|
@ -92,7 +92,8 @@ public:
|
||||||
static bool GetErrorOccuredFlag()
|
static bool GetErrorOccuredFlag()
|
||||||
{
|
{
|
||||||
return cmSystemTools::s_ErrorOccured ||
|
return cmSystemTools::s_ErrorOccured ||
|
||||||
cmSystemTools::s_FatalErrorOccured;
|
cmSystemTools::s_FatalErrorOccured ||
|
||||||
|
GetInterruptFlag();
|
||||||
}
|
}
|
||||||
///! If this is set to true, cmake stops processing commands.
|
///! If this is set to true, cmake stops processing commands.
|
||||||
static void SetFatalErrorOccured()
|
static void SetFatalErrorOccured()
|
||||||
|
|
Loading…
Reference in New Issue