Obtaining GPL'ed Qt for Windows: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
Line 5: Line 5:
== Installation ==
== Installation ==


* Download [http://paraview.org/files/v2.9/ParaView-qt-win-opensource-src-4.1.4.zip this file], saving it to a convenient location (c:\qt is strongly recommended).
* Download [http://paraview.org/files/v2.9/paraview-qt-win-opensource-src-4.2.2.zip paraview-qt-win-opensource-src-4.2.2.zip], saving it to a convenient location (c:\qt is strongly recommended).
* Expand the Paraview-qt-win-opensource-src-4.1.4.zip file.
* Expand the paraview-qt-win-opensource-src-4.2.2.zip file.
* Start a DOS shell, and cd to the c:\qt\paraq-qt-win-opensource-src-4.1.4 directory.
* Start a DOS shell, and cd to the c:\qt\paraview-qt-win-opensource-src-4.2.2 directory.
* Run the Qt configure '''script''' ('''not''' configure.exe):
* Run the Qt configure '''script''' ('''not''' configure.exe):


  c:\qt\paraq-qt-win-opensource-src-4.1.4> qconfigure.bat
  c:\qt\paraview-qt-win-opensource-src-4.2.2> qconfigure.bat


* From this point forward, compilation and deployment of the Qt libraries should proceed normally.  Begin compilation using the in-console instructions provided by the configuration process.
* From this point forward, compilation and deployment of the Qt libraries should proceed normally.  Begin compilation using the in-console instructions provided by the configuration process.
* Configure your PATH to point to c:\qt\paraq-qt-win-opensource-src-4.1.4\bin.
* Configure your PATH to point to c:\qt\paraview-qt-win-opensource-src-4.2.2\bin.
* Use CMake to build ParaQ normally.
* Use CMake to build ParaView normally.


== Advanced Users ==
== Advanced Users ==

Revision as of 18:56, 11 December 2006

Overview

On Win32 operating systems, Trolltech has adopted a policy of crippling their GPL'd "open source edition" of Qt 4.2 so that it can only be built using the MinGW environment, which is based upon the gcc compiler ported to Win32. Developers who wish to use Qt with Microsoft compilers would normally be encouraged to purchase the commercial edition of Qt, see the Trolltech FAQ entry on this subject. Because Microsoft compilers are preferred for ParaQ builds on Win32, we are providing a patched version of the Qt GPL sources that can be built with Microsoft tools.

Installation

  • Download paraview-qt-win-opensource-src-4.2.2.zip, saving it to a convenient location (c:\qt is strongly recommended).
  • Expand the paraview-qt-win-opensource-src-4.2.2.zip file.
  • Start a DOS shell, and cd to the c:\qt\paraview-qt-win-opensource-src-4.2.2 directory.
  • Run the Qt configure script (not configure.exe):
c:\qt\paraview-qt-win-opensource-src-4.2.2> qconfigure.bat
  • From this point forward, compilation and deployment of the Qt libraries should proceed normally. Begin compilation using the in-console instructions provided by the configuration process.
  • Configure your PATH to point to c:\qt\paraview-qt-win-opensource-src-4.2.2\bin.
  • Use CMake to build ParaView normally.

Advanced Users

For the curious, here is the procedure used to patch the Qt GPL sources:

The QtWin Project provides a set of patches that allow the Qt GPL libraries to be built with Microsoft compilers. You will need Cygwin installed on your machine to provide the "patch" command.

  • If you don't already have Cygwin installed (why not?), run Cygwin Setup to download and install Cygwin.
  • Download qt-win-opensource-src-4.2.2.zip from Trolltech.
  • Expand qt-win-opensource-src-4.2.2.zip in a convenient location such as c:\qt. This will create a c:\qt\qt-win-opensource-src-4.2.2 directory containing the full Qt sources. Note: ensure that your archive utility restores permissions and ownership for the zip file contents. Some tools (such as cygwin unzip) don't do this by default, which will lead to compile errors when you compile the sources later-on.
  • Download acs-4.2.2-patch1.zip from the QtWin project.
  • Move the downloaded file acs-4.2.2-patch1.zip to the c:\qt\qt-win-opensource-src-4.2.2 directory.
  • Expand acs-4.2.2-patch1.zip in place. Note: ensure that your archive utility restores permissions and ownership for the zip file contents. Some tools (such as cygwin unzip) don't do this by default, which will lead to compile errors when you compile the sources later-on.
  • Start a Cygwin shell, and cd to your new Qt source directory:
$ cd /cygdrive/c/qt/qt-win-opensource-src-4.2.2
  • Patch the Qt sources:
$ patch -p1 -i qtwin_patch/msvc_bcc32_42.patch
  • Voila!

Older Versions