better dcd completion if receipt us subpackage-oriented

This commit is contained in:
Basile Burg 2022-07-15 05:04:45 +02:00
parent 60f9e4e984
commit e73d226dba
1 changed files with 3 additions and 1 deletions

View File

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