Windows/Build/Building Qt 4: Difference between revisions

From KDE Community Wiki
< Windows‎ | Build
No edit summary
 
(8 intermediate revisions by 6 users not shown)
Line 2: Line 2:
{{warning|Currently you need qt-copy from kde svn to successful compile kdelibs!}}
{{warning|Currently you need qt-copy from kde svn to successful compile kdelibs!}}


# '''Get the Qt4 source code'''
=Get the Qt4 source code=
#* Trolltech customers: get it from Trolltech. After running the exe file, the sources will be unpacked into a selected directory.
Open Source developers: check out ''qt-copy'' from http://websvn.kde.org/trunk/qt-copy/ with your favorite svn client.
#* Open Source developers: check out ''qt-copy'' from http://websvn.kde.org/trunk/qt-copy/ with your favorite svn client. Then patch the source code with KDE's own patches first: <tt>cd qt-copy\patches; apply_patches.bat</tt>. You will need patch.exe.
 
# '''Compile Qt4'''
 
#* Trolltech customers: just start <tt>configure.exe</tt> and perform the installation.
=Apply the KDE patches=
#* Open Source developers: Get from unofficial (but legal) Qt4 patches for MSVC>=7.x from [http://sourceforge.net/project/showfiles.php?group_id=49109&package_id=165202 http://sourceforge.net/projects/qtwin/]. Make sure to use the once for qt-copy! Note that Trolltech does not provide support for these compilers, so '''do not post any question about this patch to the Trolltech's mailing list'''. The files are stored in the [http://qtwin.svn.sourceforge.net/viewvc/qtwin/qt-4/trunk/qtwin_patch Sourceforge SVN repository].
Patch the source code with KDE's own patches first: run <tt>patches\apply_patches.bat</tt>.
#** Unpack the file in the main Qt4 directory and apply the patches to Qt4: call <tt>installpatch4x.bat</tt> in the DOS window, or just run this batch file.
 
#** Configure Qt4: You will need openssl support - so make sure it's enabled!
 
=Configure Qt=
You will need openssl support - so make sure it's enabled!
Also make sure that configure.exe find openssl headers and libs:
Also make sure that configure.exe find openssl headers and libs:
<pre>
<pre>
Line 16: Line 18:
-L "<path to windbus libs>"
-L "<path to windbus libs>"
</pre>
</pre>
<tt>{PLATFORM}</tt> can be <tt>msvc.net</tt> for msvc .NET (2003) or <tt>msvc2005</tt> for msvc 2005.
<tt>{PLATFORM}</tt> can be <tt>msvc</tt> for MSVC 6.0, <tt>msvc.net</tt> for MSVC .NET (2002 (7.0) or 2003 (7.1)), <tt>msvc2005</tt> for MSVC 2005 (8.0) or <tt>msvc2008</tt> for MSVC .NET 9.0 (2008).
This is needed to simplify path names in the future if you did not use the commercial <tt>configure.exe</tt> GUI installer:
This is needed to simplify path names in the future if you did not use the commercial <tt>configure.exe</tt> GUI installer:
<pre>
<pre>
Line 24: Line 26:
'''Note:''' this (QTDIR) and the subsequent environment variables described below on this page could be set globally in the "System" applet, Advanced->Environment Variables. Optionally, if you want to have multiple configurations (e.g. Qt3 and Qt4) on the same machine and account, you can enter appropriate ''set'' commands into a single .bat file, e.g. [[Getting Started/Build/KDE4/Windows/Environment|<tt>environment.bat</tt>]] which you can then execute once in a new ''cmd'' shell.
'''Note:''' this (QTDIR) and the subsequent environment variables described below on this page could be set globally in the "System" applet, Advanced->Environment Variables. Optionally, if you want to have multiple configurations (e.g. Qt3 and Qt4) on the same machine and account, you can enter appropriate ''set'' commands into a single .bat file, e.g. [[Getting Started/Build/KDE4/Windows/Environment|<tt>environment.bat</tt>]] which you can then execute once in a new ''cmd'' shell.


See also alternative instructions at [http://qtnode.net/wiki?title=Qt4_with_Visual_Studio qtnode.net].
See also alternative instructions at [http://wiki.qtcentre.org/index.php?title=Qt4_with_Visual_Studio QtCentre.net].

Latest revision as of 14:58, 18 March 2016

Warning

This page currently just describes build with msvc-compiler. If you need qt for mingw please use the installer instead

Warning

Currently you need qt-copy from kde svn to successful compile kdelibs!


Get the Qt4 source code

Open Source developers: check out qt-copy from http://websvn.kde.org/trunk/qt-copy/ with your favorite svn client.


Apply the KDE patches

Patch the source code with KDE's own patches first: run patches\apply_patches.bat.


Configure Qt

You will need openssl support - so make sure it's enabled! Also make sure that configure.exe find openssl headers and libs:

qconfigure {PLATFORM} -openssl -I "<path to openssl headers>" \
-L "<path to openssl libs>" -qdbus -I "<path to windbus headers>" \
-L "<path to windbus libs>"

{PLATFORM} can be msvc for MSVC 6.0, msvc.net for MSVC .NET (2002 (7.0) or 2003 (7.1)), msvc2005 for MSVC 2005 (8.0) or msvc2008 for MSVC .NET 9.0 (2008). This is needed to simplify path names in the future if you did not use the commercial configure.exe GUI installer:

set QTDIR={your qt installation directory}

Note: this (QTDIR) and the subsequent environment variables described below on this page could be set globally in the "System" applet, Advanced->Environment Variables. Optionally, if you want to have multiple configurations (e.g. Qt3 and Qt4) on the same machine and account, you can enter appropriate set commands into a single .bat file, e.g. environment.bat which you can then execute once in a new cmd shell.

See also alternative instructions at QtCentre.net.