#97, display missing target when dbg is not possible

This commit is contained in:
Basile Burg 2016-11-29 06:52:15 +01:00
parent 6656a39e24
commit 6f482f3898
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 4 additions and 3 deletions

View File

@ -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;
//