README.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. FPKPascal XForms support.
  2. -------------------------
  3. To compile the units in this directory, proceed as follows:
  4. 0. You need an installed forms library. You need to know where it is
  5. installed. Either version 0.86 or 0.88 will do. For version 0.88
  6. you need version 0.99.8 or higher of the compiler.
  7. 2. Edit the Makefile in the current directory . You have to specify:
  8. - which version of the forms library you use (0.86 or 0.88)
  9. - The place of the forms library. (if not in /usr/lib).
  10. - The place of the X library. (should be /usr/X11/lib)
  11. - Where you want the forms libraries installed.
  12. - Where you want the fd2pascal filter installed.
  13. - Optionally, the path to the compiler and the pascal units.
  14. 3. You should be all set to compile. type
  15. make all
  16. This will compile all the needed units, and the fd2pascal program which
  17. translates .fd design files to pascal programs.
  18. As of version 0.88, the fdesign program can directly issue pascal
  19. code if you have fd2pascal installed.
  20. 4. To compile the demo programs, type (still in the forms directory)
  21. make demo
  22. This will compile all the demo programs in the demo subdirectory.
  23. 5. To install the units and the fd2pascal program, type
  24. make install
  25. This will install all units and the program in the directories you
  26. specified. They will be created if they don't exist.
  27. More information on all this can be found on
  28. http://tfdec1.fys.kuleuven.ac.be/~michael/fpc-linux/forms.html
  29. Enjoy !
  30. Michael Van Canneyt ([email protected])