Created
June 28, 2010 14:21
-
-
Save bilke/455896 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: This script downloads and builds QtCore and QtXML libraries only on Win :: | |
wget ftp://ftp.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.3.tar.gz | |
7za x -y qt-everywhere-opensource-src-4.6.3.tar.gz | |
del qt-everywhere-opensource-src-4.6.3.tar.gz | |
7za x -y qt-everywhere-opensource-src-4.6.3.tar | |
del qt-everywhere-opensource-src-4.6.3.tar | |
cd qt-everywhere-opensource-src-4.6.3 | |
wget ftp://ftp.qt.nokia.com/jom/jom093.zip | |
7za x -y jom093.zip | |
del jom093.zip | |
:: Adding -fast speeds up the configuration process but does not create all targets | |
echo y | configure.exe -opensource | |
jom sub-tools-bootstrap sub-moc sub-rcc sub-corelib sub-network sub-xml sub-xmlpatterns | |
nmake clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment