mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-20 12:19:31 +02:00
IDE: fpc info: show include paths and unit scopes
git-svn-id: trunk@57840 -
This commit is contained in:
parent
1189d43fa2
commit
4ed3446f8f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user