XFLTK is an extension to fltk library which provides generation of GUI based on XML configuration files.
See http://xfltk.w8.pl for more details.

In archive exists two directories:
xfltk - includes XFLTK library
xfltkpreview - include example program (simple XFLTK viewer)
You must compile it in above order.

Both are eclipse (+CDT) projects (see http://www.eclipse.org/ and http://www.eclipse.org/cdt/).
You can just use eclipse to compile them.

You can also use GNU make to compile.
Both (xfltk and xfltkpreview) directories includes subdirectories:
Release - with release (optimize) version makefile
Debug - with debug version makefile

Just go to suitable directory and type:
make

After compile copy:
xfltk\xfltk\*.h to your include\xfltk directory
xfltk\Release\libxfltk.a (or xfltk\Debug\libxfltk.a) to your lib directory

Warning: Compilation flags in xfltkpreview are for win32.

Remamber to link eXpat and fltk (ver. 2) to your program:
-lxfltk -lexpat -lfltk

Have fun!
Piotr Beling & Kuba Witczak