This section describes how to compile the Qt library.
Content
Qt 4 is a framework for application development.
Downlaod and build the Qt library using the following commands:
cd ${LOCALSOURCEDIR} && \
wget -c http://download.qt-project.org/official_releases/qt/4.8/4.8.6/qt-everywhere-opensource-src-4.8.6.zip && \
cd ${LOCALBUILDDIR} && \
unzip ${LOCALSOURCEDIR}/qt-everywhere-opensource-src-4.8.6.zip && \
cd qt-everywhere-opensource-src-4.8.6 && \
./configure.exe -prefix $LOCALDESTDIR/qt4 -release -opensource -nomake demos -nomake examples && \
mingw32-make
Press y to accept the license.
Install it:
mingw32-make install
Qt builds can take a very long time.