buildfv.pas 733 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. $Id$
  3. Unit to build all units of Free Vision
  4. }
  5. unit buildfv;
  6. interface
  7. uses
  8. fvcommon,
  9. objects,
  10. drivers,
  11. memory,
  12. fvconsts,
  13. resource,
  14. views,
  15. validate,
  16. msgbox,
  17. dialogs,
  18. menus,
  19. app,
  20. stddlg,
  21. asciitab,
  22. tabs,
  23. colortxt,
  24. statuses,
  25. histlist,
  26. inplong,
  27. editors,
  28. gadgets,
  29. time;
  30. implementation
  31. end.
  32. {
  33. $Log$
  34. Revision 1.7 2004-11-03 20:33:05 peter
  35. * removed unnecesasry graphfv stuff
  36. Revision 1.6 2004/11/02 23:53:19 peter
  37. * fixed crashes with ide and 1.9.x
  38. Revision 1.5 2002/09/07 15:06:36 peter
  39. * old logs removed and tabs fixed
  40. Revision 1.4 2002/05/29 22:15:19 pierre
  41. + asciitab unit added
  42. Revision 1.3 2002/01/29 22:00:33 peter
  43. * colortxt added
  44. }