1E-MailRelay GUI
2===============
3
4Overview
5--------
6The E-MailRelay GUI can act as an installer for self-extracting pacakges or as a
7configuration utility.
8
9For more information refer to the developer document (doc/developer.txt) and
10comments in guimain.cpp.
11
12Building
13--------
14When building the E-MailRelay GUI on unix-like operating systems you may need to
15set the "PKG_CONFIG_PATH" environment variable to point to the ".pc" files in
16the Qt "lib" directory, and set the "e_qtmoc" configure variable to point to the
17Qt "moc" utility. You may also need to set the correct library directory for Qt
18if it is wrong in the ".pc" file by setting "LDFLAGS":
19
20	export QT=/usr/local/qt5
21	LDFLAGS=-L$QT/lib PKG_CONFIG_PATH=$QT/lib ./configure --enable-gui e_qtmoc="$QT/bin/moc"
22