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
|
begin
|
||||||
if fDbgRunnable then
|
if fDbgRunnable then
|
||||||
dlgOkInfo('Either the runnable is not compiled or it cannot be found' +
|
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',
|
LineEnding + 'Note that the runnable option "outputFolder" is not supported by this widget.' +
|
||||||
'GDB commander')
|
LineEnding + LineEnding + 'Expected target: ' + fExe, 'GDB commander')
|
||||||
else
|
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;
|
exit;
|
||||||
end;
|
end;
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue