summaryrefslogtreecommitdiffstats
path: root/mkspecs/macx-g++42/qmake.conf
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@nokia.com>2010-10-13 12:09:10 (GMT)
committerTor Arne Vestbø <tor.arne.vestbo@nokia.com>2010-10-13 18:03:01 (GMT)
commit86636e0c4ab91bfb60be1e18d6daff34d41a5927 (patch)
treeee89e8d15a27377afb45e7b6fb9ee0e4ef42bc8a /mkspecs/macx-g++42/qmake.conf
parent2def16770a623df4e5fc0dcd5f0e55c485251992 (diff)
downloadQt-86636e0c4ab91bfb60be1e18d6daff34d41a5927.zip
Qt-86636e0c4ab91bfb60be1e18d6daff34d41a5927.tar.gz
Qt-86636e0c4ab91bfb60be1e18d6daff34d41a5927.tar.bz2
Refactor GCC mkspecs to share more configuration options
The g++ and llvm mkspecs now share the common parts in common/gcc-base.conf Each top level mkspec includes a platform-specific version of this base, either common/gcc-base-unix.conf or common/gcc-base-mac.conf, and these platform specific bases will include the cross-platform one. The same pattern is then used for the g++ specific configurations, which are split up into common/g++.conf, common/g++-unix.conf and common/g++-mac.conf The qplatformdefs.h for mac was also shared where possible. The test in tests/manual/mkspecs was used to ensure that the final output of all the mkspecs was the same after the refactoring as before. Reviewed-by: ossi
Diffstat (limited to 'mkspecs/macx-g++42/qmake.conf')
-rw-r--r--mkspecs/macx-g++42/qmake.conf4
1 files changed, 3 insertions, 1 deletions
diff --git a/mkspecs/macx-g++42/qmake.conf b/mkspecs/macx-g++42/qmake.conf
index fb93697..08305ba 100644
--- a/mkspecs/macx-g++42/qmake.conf
+++ b/mkspecs/macx-g++42/qmake.conf
@@ -16,6 +16,8 @@ QMAKE_INCREMENTAL_STYLE = sublib
QMAKE_CC = gcc-4.2
QMAKE_CXX = g++-4.2
-include(../common/mac-g++.conf)
+include(../common/mac.conf)
+include(../common/gcc-base-mac.conf)
+include(../common/g++-mac.conf)
load(qt_config)