mirror of https://gitlab.com/basile.b/dexed.git
dont consider DUB as a minimal requirement to launch Coedit
building with DUB currently only a trick briefly explained in the wiki.
This commit is contained in:
parent
3ef1d25c43
commit
d0ec5886d5
|
@ -422,12 +422,12 @@ end;
|
|||
|
||||
procedure TCEMainForm.checkCompilo;
|
||||
const
|
||||
msg = 'Coedit recquires DMD or DUB to be setup on this system' + LineEnding +
|
||||
msg = 'Coedit requires DMD to be setup on this system' + LineEnding +
|
||||
'If DMD is setup please add it to the system PATH variable before using Coedit';
|
||||
begin
|
||||
if exeInSysPath('dmd') or exeInSysPath('dub') then
|
||||
if exeInSysPath('dmd') then
|
||||
exit;
|
||||
ce_common.dlgOkError(msg);
|
||||
dlgOkError(msg);
|
||||
close;
|
||||
end;
|
||||
|
||||
|
|
Loading…
Reference in New Issue