lazarus/components/codetools/allcodetoolunits.pp
lazarus 08e2d7d79a MG: fixed Makefile
git-svn-id: trunk@633 -
2002-01-28 12:14:56 +00:00

54 lines
1.3 KiB
ObjectPascal

{ $Id$ }
{
/***************************************************************************
allcodetoolunits.pp
dummy unit to compile all units
/***************************************************************************
}
unit AllCodeToolUnits;
{$mode objfpc}{$H+}
interface
uses
MemCheck,
CodeToolManager, CustomCodeTool, PascalParserTool, FindDeclarationTool,
StdCodeTools, MethodJumpTool, EventCodeTool, CodeCompletionTool, LinkScanner,
BasicCodeTools, CodeTree, CodeAtom, SourceChanger, CodeCache,
KeywordFuncLists, SourceLog, ExprEval, DefineTemplates, FileProcs, AVL_Tree;
implementation
end.
{ =============================================================================
$Log$
Revision 1.7 2002/01/28 12:14:56 lazarus
MG: fixed Makefile
Revision 1.6 2002/01/23 22:12:54 lazarus
MG: external tool output parsing for fpc and make messages
Revision 1.5 2001/12/15 22:57:19 lazarus
MG: added find declaration (not useful yet)
Revision 1.4 2001/12/12 21:11:29 lazarus
MG: started finddeclarationtool
Revision 1.3 2001/11/15 09:08:35 lazarus
MG: splitted codetools.pp, it was a monster
Revision 1.2 2001/10/24 00:35:53 lazarus
MG: fixes for fpc 1.1: range check errors
Revision 1.1 2001/10/09 10:04:43 lazarus
MG: added allcodetoolunits.pp
}