IDE: fpc info: show include paths and unit scopes

git-svn-id: trunk@57840 -
This commit is contained in:
mattias 2018-05-08 08:32:13 +00:00
parent 1189d43fa2
commit 4ed3446f8f

View File

@ -338,7 +338,15 @@ begin
if CfgCache.Undefines<>nil then begin
sl.Add(CfgCache.Undefines.AsText);
end;
sl.Add('UnitPaths:');
sl.Add('Include Paths:');
if CfgCache.IncludePaths<>nil then begin
sl.AddStrings(CfgCache.IncludePaths);
end;
sl.Add('Unit Scopes:');
if CfgCache.UnitScopes<>nil then begin
sl.AddStrings(CfgCache.UnitScopes);
end;
sl.Add('Unit Paths:');
if CfgCache.UnitPaths<>nil then begin
sl.AddStrings(CfgCache.UnitPaths);
end;