
Installation:
-------------

To build, first check that you have the packages required. The ones required 
to build are:

libgtk2.0-dev

Then create a folder (if there isn't one already) to build in. 

	$ mkdir build
	$ cd build
	
There you just run the cmake command, pointing it to the folder with the 
CMakeLists.txt file, which should be the one above, and tell it that it
should generate Unix Makefiles.

	$ cmake .. -G"Unix Makefiles"

(On a linux system there is a chance that the -G"Unix Makefiles" is implied
by default, and thus not necessary.) This will find necessary GTK libraries, 
and generate makefiles. When this is done you can simply enter 

	$ make

and the program will be built. If you would like to see the actual commands 
that run during the compile, you can add VERBOSE=1 to the make command.
Then, to install run make install with superuser rights:

	$ su -c "make install"
	
or on a system using sudo:

	$ sudo make install

This installs a desktop file too, so now you should have an icon in the 
development part of your X menu.
Now you are ready to run the program!
