compunit.pas 507 B

12345678910111213141516171819202122232425262728
  1. {
  2. $Id$
  3. Build file for the compiler units. This is also a unit so
  4. that there will be no linking
  5. }
  6. unit compunit;
  7. interface
  8. uses
  9. compiler,
  10. comphook,
  11. cpuinfo,
  12. browcol;
  13. implementation
  14. end.
  15. {
  16. $Log$
  17. Revision 1.1 2001-08-04 11:30:27 peter
  18. * ide works now with both compiler versions
  19. Revision 1.1.2.2 2001/03/20 00:20:44 pierre
  20. * fix some memory leaks + several small enhancements
  21. Revision 1.1.2.1 2001/01/07 22:32:33 peter
  22. * build all compiler units for IDE inclusion
  23. }