fpc/packages/ide/compiler/compunit.pas
florian 3ce7927096 * made the ide a package, so it can be build in parallel with the other packages, reasons:
- lowers build times
  - ide is not that important anymore than years before
  - other utils like pastojs are also located in the packages tree

git-svn-id: trunk@37926 -
2018-01-06 20:22:30 +00:00

17 lines
204 B
ObjectPascal

{
Build file for the compiler units. This is also a unit so
that there will be no linking
}
unit compunit;
interface
uses
ppheap,
compiler,
comphook,
cpuinfo,
browcol;
implementation
end.