1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
fpGUI Toolkit
=============
The official fpGUI website is:
http://fpgui.sourceforge.net
Getting the source code
-----------------------
The Lazarus svn does not contain the fpGUI sources. You can get the
fpGUI sources via the fpGUI Git repository as follows:
git clone git://git.code.sf.net/p/fpgui/code fpgui-code
...or you can download a zip archive of the latest code, using
the mirror repository on GitHub.
https://github.com/graemeg/fpGUI/archive/master.zip
Setup to compile LCL-fpGUI
--------------------------
Option 1)
Copy the 'src' directory from the fpGUI sources into your Lazarus
directory as follows:
<fpgui>/src/ ⇒ <lazarus>/lcl/interfaces/fpgui/src/
Option 2)
Use your file systems's symbolic linking function to simply link
the fpGUI src directory to the correct location in Lazarus.
For example:
cd /opt/lazarus/lcl/interfaces/fpgui
ln -s /path/to/fpgui/src src
For more details see:
http://wiki.freepascal.org/fpGUI_Interface
|