mirror of https://gitlab.com/basile.b/dexed.git
#97, display missing target when dbg is not possible
This commit is contained in:
parent
6656a39e24
commit
6f482f3898
|
@ -1430,10 +1430,11 @@ begin
|
|||
begin
|
||||
if fDbgRunnable then
|
||||
dlgOkInfo('Either the runnable is not compiled or it cannot be found' +
|
||||
LineEnding + 'Note that the runnable option "outputFolder" is not supported by this widget',
|
||||
'GDB commander')
|
||||
LineEnding + 'Note that the runnable option "outputFolder" is not supported by this widget.' +
|
||||
LineEnding + LineEnding + 'Expected target: ' + fExe, 'GDB commander')
|
||||
else
|
||||
dlgOkInfo('The project binary is missing, cannot debug', 'GDB commander');
|
||||
dlgOkInfo('The project binary is missing, cannot debug.' +
|
||||
LineEnding + LineEnding + 'Expected target: ' + fExe, 'GDB commander');
|
||||
exit;
|
||||
end;
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue