Qt5 super module
Go to file
Qt Submodule Update Bot d2b2b92d49 Updated submodules.
Change-Id: I8cb6c9373f70ee9c52a32bdfb03a9e012db67030
Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
2013-01-13 09:53:12 +01:00
gnuwin32 Update win_flex.exe from sourceforge 2012-12-19 11:10:03 +01:00
qtactiveqt@b5366d0fa7 Updated submodules. 2013-01-13 09:53:12 +01:00
qtbase@d41fbea2ba Updated submodules. 2013-01-13 09:53:12 +01:00
qtdeclarative@83deab8d1b Updated submodules. 2013-01-13 09:53:12 +01:00
qtdoc@72f8817af0 Updated submodules. 2013-01-13 09:53:12 +01:00
qtgraphicaleffects@1444a08b7e Updated submodules. 2013-01-13 09:53:12 +01:00
qtimageformats@f377f4960a Updated submodules. 2013-01-13 09:53:12 +01:00
qtjsbackend@ce0de1819a Updated submodules. 2013-01-13 09:53:12 +01:00
qtmultimedia@4760e1fb02 Updated submodules. 2013-01-13 09:53:12 +01:00
qtqa@e9f870d024 Updated submodules. 2013-01-13 09:53:12 +01:00
qtquick1@4b0c632688 Updated submodules. 2013-01-13 09:53:12 +01:00
qtrepotools@7113158570 Updated submodules. 2013-01-13 09:53:12 +01:00
qtscript@3f960df4c2 Updated submodules. 2013-01-13 09:53:12 +01:00
qtsvg@bce984262c Updated submodules. 2013-01-13 09:53:12 +01:00
qttools@30d1329b90 Updated submodules. 2013-01-13 09:53:12 +01:00
qttranslations@bee3fc9887 Updated submodules. 2013-01-13 09:53:12 +01:00
qtwebkit@1ced62033f Updated submodules. 2013-01-13 09:53:12 +01:00
qtwebkit-examples-and-demos@1faaf0d1e5 Updated submodules. 2013-01-13 09:53:12 +01:00
qtxmlpatterns@c3c83eb164 Updated submodules. 2013-01-13 09:53:12 +01:00
.commit-template adjust commit template 2011-12-13 16:55:25 +01:00
.gitattributes Don't include init-repository and .gitmodules in the package either 2012-09-14 17:31:34 +02:00
.gitignore remove traces of webkit build being claimed to be special 2012-09-21 16:45:02 +02:00
.gitmodules remove special handling of qtwebkit 2012-11-30 11:14:52 +01:00
.tag Update the git-archive export options 2012-09-05 14:33:37 +02:00
README don't tell people to add qtbase/bin to PATH 2012-09-21 16:45:11 +02:00
README.git Splitting up the README files 2012-09-03 07:02:20 +02:00
configure fix argument quoting when invoking "proper" configure 2012-11-14 05:51:43 +01:00
configure.bat Change copyrights from Nokia to Digia 2012-09-25 14:31:30 +02:00
init-repository remove special handling of qtwebkit 2012-11-30 11:14:52 +01:00
qt.pro (re-)add top-level 'check' target 2012-12-04 15:33:34 +01:00

README

HOW TO BUILD QT5
================


 Synopsis
 ========

   System requirements
   ------------------

    - Perl 5.8 or later
    - Python 2.7 or later
    - C++ compiler supporting the C++98 standard

     For other platform specific requirements,
     please see section "Setting up your machine" on:
     http://qt-project.org/wiki/Get_The_Source

   Optional requirements
   ---------------------

   - OpenSSL for SSL sockets or HTTPS
   - Wayland

   New dependencies in Qt 5
   ------------------------

     Linux: On systems running X11, the XCB libraries are required for
     the platform plugin to build. qtbase/src/plugins/platforms/xcb/README
     lists the required packages.

     Qt 5 can make use of the ICU libraries providing Unicode and Globalization
     support (see http://site.icu-project.org/). They are required for building
     QtWebKit.
     On Linux, they will be auto-detected.
     On Windows, they need to be manually installed and the "include" and "lib"
     folders of the ICU installation must be appended to the INCLUDE and LIB
     environment variables after calling the Windows SDK setup script.
     The "bin" folder of the ICU installation should be appended to the PATH
     environment variable in order to for the DLLs to be found at run-time.

   Linux, Mac:
   -----------

     cd <path>/qt-everywhere-opensource-src-<version>
     ./configure -prefix $PWD/qtbase -opensource -nomake tests
     make -j 4

   Windows:
   --------

     Open a Windows SDK (7.0, 7.1 or later) command prompt. Ensure that Perl
     version 5.12 or later and Python version 2.7 or later can be found in the
     path.

     cd <path>\qt-everywhere-opensource-src-<version>
     configure -prefix %CD%\qtbase -opensource -nomake tests
     nmake // jom // mingw32-make

     For MinGW (gcc version 4.6 or later), ensure that the compiler can
     be found in the path.

     To accelerate the bootstrap of qmake with MSVC, it may be useful to pass
     "-make-tool jom" on the configure command line. If you do not use jom,
     adding "/MP" to the CL environment variable is a good idea.

 More details follow.

 Build!
 ======

 A typical `configure; make' build process is used.

 Some relevant configure options (see configure -help):

 -release              Compile and link Qt with debugging turned off.
 -debug                Compile and link Qt with debugging turned on.
 -nomake tests         Disable building of tests to speed up compilation
 -nomake examples      Disable building of examples to speed up compilation
 -confirm-license      Automatically acknowledge the LGPL 2.1 license.

 Example for a release build:
 (adjust the `-jN' parameter as appropriate for your system)

   ./configure -prefix $PWD/qtbase -opensource
   make -j4

 Example for a developer build:
 (enables more autotests, builds debug version of libraries, ...)

   ./configure -developer-build -opensource
   make -j4

 See output of `./configure -help' for documentation on various options to
 configure.

 The above examples will build whatever Qt5 modules have been enabled by
 default in the build system.

 It is possible to build selected modules with their dependencies by doing
 a `make module-<foo>'.  For example, to build only qtscript and qtwebkit,
 and the modules they depend on:

   ./configure -prefix $PWD/qtbase -opensource
   make -j4 module-qtscript module-qtwebkit

 This can save a lot of time if you are only interested in a subset of Qt5.


 Hints
 =====

 The submodule repository qtrepotools contains useful scripts for
 developers and release engineers. Consider adding qtrepotools/bin
 to your PATH environment variable to access them.

 The qt5_tool in qtrepotools has some more features which may be of interest.
 Try `qt5_tool --help'.


 Building Qt5 from git
 =====================
 See http://qt-project.org/wiki/Building-Qt-5-from-Git and README.git
 for more information.