mirror of https://gitlab.com/basile.b/dexed.git
fixup HEAD^1, importPaths must be used for DCD
module names can mismatch with sourcePaths
This commit is contained in:
parent
e73d226dba
commit
accb025ac7
|
@ -1374,8 +1374,6 @@ begin
|
|||
begin
|
||||
lst.Clear;
|
||||
listFiles(lst, pth, true);
|
||||
if lst.Count > 0 then
|
||||
fImportPaths.Add(pth);
|
||||
for abs in lst do
|
||||
if isDlangCompilable(abs.extractFileExt) then
|
||||
fSrcs.Add(patchPlateformPath(ExtractRelativepath(fBasePath, abs)));
|
||||
|
@ -1396,6 +1394,15 @@ begin
|
|||
else
|
||||
tryAddFromFolder(expandFilenameEx(fBasePath, p));
|
||||
end;
|
||||
if o.findArray('importPaths', a) then
|
||||
for i := 0 to a.Count-1 do
|
||||
begin
|
||||
p := TrimRightSet(a.Strings[i], ['/','\']);
|
||||
if p.dirExists and FilenameIsAbsolute(p) then
|
||||
fImportPaths.Add(p)
|
||||
else
|
||||
fImportPaths.Add(expandFilenameEx(fBasePath, p));
|
||||
end;
|
||||
end;
|
||||
procedure trySubpPackages(a: TJSONArray);
|
||||
var
|
||||
|
|
Loading…
Reference in New Issue