diff options
author | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2013-03-05 16:18:04 +0100 |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2013-03-05 18:01:25 +0100 |
commit | c401068bfc62f5f19bbac7d38060af2cb9ce10e5 (patch) | |
tree | 74d2d13783588d01db59b2aded72b77be630159f /src/tools | |
parent | 6bae47c5c0092c2cec27b84e80432a979a258c4c (diff) | |
download | qt-creator-c401068bfc62f5f19bbac7d38060af2cb9ce10e5.tar.gz |
Compile fix for Qt 5.0.0
We rely on symbols only available in Qt 5.0.1 in the qml2puppet.
Once 5.1 is out we will require Qt 5.1 for qml2puppet.
Change-Id: I04f278203fcbd5bf84e3d76202bd4b5c9193a45b
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/tools.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/tools.pro b/src/tools/tools.pro index 51bcfe239a..240a42ee3f 100644 --- a/src/tools/tools.pro +++ b/src/tools/tools.pro @@ -32,5 +32,8 @@ QT_BREAKPAD_ROOT_PATH = $$(QT_BREAKPAD_ROOT_PATH) } greaterThan(QT_MAJOR_VERSION, 4) { - SUBDIRS += qml2puppet + !greaterThan(QT_MINOR_VERSION, 0):!greaterThan(QT_PATCH_VERSION, 0) { + } else { + SUBDIRS += qml2puppet + } }
\ No newline at end of file |