This directory contains a small example program which converts units. It
uses GTK API. GTK is portable across many  platforms  including  Windows
and  Linux.

1. Ensure  that GTK is installed on your system. See http://www.gtk.org,
   but also check if there are ready to use packages for your platform. 

2. Ada  bindings  to  GTK  are called GtkAda. The home page of GtkAda is
   http://libre.act-europe.fr/GtkAda/main.html. 

3. To  build  it  using GNAT you have to install GtkAda first. can go as
   follows:  

3.a. Under  Windows,  assuming  that C:/GtkAda-2.2.0 is the installation
     directory of GtkAda:

gnatmake -IC:/GtkAda-2.2.0/include/gtkada -I../../../ units_converter.adb -largs -mwindows


3.b. Under Linux:

gnatmake -I../../../ units_converter.adb `gtkada-config`
