Prerequisites
------------
- GCC
- Python
- OpenSSL
- Qt Open Source Edition (optional; not needed for Swiften)

Building
--------
- Create a file 'config.py' with the following contents, reflecting your local
  setup:
		qt = "path/to/qt"
	(e.g. qt = "/usr/share/qt4")
- Run 
		./scons
- To build only a subdir, add the path as a target to scons. E.g., for Swift:
		./scons Swift

Running tests
-------------
- Run
		./scons test=unit
	for running the unit tests.

Installing
----------
- To install swift in /usr/local, run
		./scons SWIFT_INSTALLDIR=/usr/local /usr/local

Swiften-only
------------
- To compile just Swiften, add Swiften to the end of the scons command
		./scons Swiften
- To compile and install only Swiften, use SWIFTEN_INSTALLDIR
		./scons SWIFTEN_INSTALLDIR=/usr/local /usr/local