summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-02-21 16:34:24 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-28 05:43:25 +0100
commit267567b8da6967ae450c40a4d156fffcaf85d79b (patch)
tree7152a79eff6ac531167a72f6de5ec3af26e1e60c
parentbb6b2f4073fe9934f78d5f5382b59c70f6c1b515 (diff)
Enable C++11 mode for Qt tools too
Change-Id: Ifb93e6ed1046142a9f57c7546ddf926532efd868 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r--mkspecs/features/qt_common.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/qt_common.prf b/mkspecs/features/qt_common.prf
index 203b74f031..2400ab0c2c 100644
--- a/mkspecs/features/qt_common.prf
+++ b/mkspecs/features/qt_common.prf
@@ -9,6 +9,7 @@
# We mean it.
#
+contains(QT_CONFIG, c++11): CONFIG += c++11
contains(TEMPLATE, .*lib) {
# module and plugins
contains(QT_CONFIG, reduce_exports): CONFIG += hide_symbols
@@ -16,5 +17,4 @@ contains(TEMPLATE, .*lib) {
contains(QT_CONFIG, largefile): CONFIG += largefile
contains(QT_CONFIG, separate_debug_info): CONFIG += separate_debug_info
contains(QT_CONFIG, separate_debug_info_nocopy): CONFIG += separate_debug_info_nocopy
- contains(QT_CONFIG, c++11):CONFIG += c++11
}