mirror of https://gitlab.com/basile.b/dexed.git
better dcd completion if receipt us subpackage-oriented
This commit is contained in:
parent
60f9e4e984
commit
e73d226dba
|
@ -1374,6 +1374,8 @@ begin
|
||||||
begin
|
begin
|
||||||
lst.Clear;
|
lst.Clear;
|
||||||
listFiles(lst, pth, true);
|
listFiles(lst, pth, true);
|
||||||
|
if lst.Count > 0 then
|
||||||
|
fImportPaths.Add(pth);
|
||||||
for abs in lst do
|
for abs in lst do
|
||||||
if isDlangCompilable(abs.extractFileExt) then
|
if isDlangCompilable(abs.extractFileExt) then
|
||||||
fSrcs.Add(patchPlateformPath(ExtractRelativepath(fBasePath, abs)));
|
fSrcs.Add(patchPlateformPath(ExtractRelativepath(fBasePath, abs)));
|
||||||
|
@ -1884,9 +1886,9 @@ procedure TDubProject.updateFields;
|
||||||
begin
|
begin
|
||||||
updatePackageNameFromJson;
|
updatePackageNameFromJson;
|
||||||
udpateConfigsFromJson;
|
udpateConfigsFromJson;
|
||||||
|
updateImportPathsFromJson;
|
||||||
updateSourcesFromJson;
|
updateSourcesFromJson;
|
||||||
updateTargetKindFromJson;
|
updateTargetKindFromJson;
|
||||||
updateImportPathsFromJson;
|
|
||||||
updateOutputNameFromJson;
|
updateOutputNameFromJson;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue