mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-08 12:12:45 +02:00
32 lines
907 B
ObjectPascal
32 lines
907 B
ObjectPascal
{ $Id$ }
|
|
{
|
|
/***************************************************************************
|
|
allcodetoolunits.pp
|
|
|
|
dummy unit to compile all units
|
|
|
|
/***************************************************************************
|
|
}
|
|
unit AllCodeToolUnits;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
MemCheck,
|
|
CodeToolManager, CustomCodeTool, PascalParserTool, PascalReaderTool,
|
|
FindDeclarationTool, StdCodeTools, MethodJumpTool, EventCodeTool,
|
|
CodeCompletionTool, LinkScanner, FindDeclarationCache, BasicCodeTools,
|
|
CodeTree, CodeAtom, SourceChanger, CodeToolMemManager, CodeCache,
|
|
KeywordFuncLists, SourceLog, ExprEval, DefineTemplates, FileProcs, CodeToolsStrConsts,
|
|
MultiKeyWordListTool, ResourceCodeTool, CodeToolsStructs,
|
|
// fast xml units, changes not merged in current fpc
|
|
Laz_DOM, Laz_XMLCfg, Laz_XMLRead, Laz_XMLWrite;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|