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;
|
procedure TCEMainForm.checkCompilo;
|
||||||
const
|
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';
|
'If DMD is setup please add it to the system PATH variable before using Coedit';
|
||||||
begin
|
begin
|
||||||
if exeInSysPath('dmd') or exeInSysPath('dub') then
|
if exeInSysPath('dmd') then
|
||||||
exit;
|
exit;
|
||||||
ce_common.dlgOkError(msg);
|
dlgOkError(msg);
|
||||||
close;
|
close;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue