diff options
author | axis <qt-info@nokia.com> | 2010-10-19 06:51:04 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-01-28 12:24:31 (GMT) |
commit | e03d5125d0792348593251585b0970c138544743 (patch) | |
tree | 28cede4734e7207ad937b0b2638300f1a3700892 /mkspecs/common/symbian | |
parent | 7a3cac878f4f4a7c2cf3ea08557ee63d8c6a9330 (diff) | |
download | Qt-e03d5125d0792348593251585b0970c138544743.zip Qt-e03d5125d0792348593251585b0970c138544743.tar.gz Qt-e03d5125d0792348593251585b0970c138544743.tar.bz2 |
Added Symbian makefile building support using MinGW backend.
RevBy: Oswald Buddenhagen
Diffstat (limited to 'mkspecs/common/symbian')
-rw-r--r-- | mkspecs/common/symbian/symbian-makefile.conf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mkspecs/common/symbian/symbian-makefile.conf b/mkspecs/common/symbian/symbian-makefile.conf index 9dc3674..c39222d 100644 --- a/mkspecs/common/symbian/symbian-makefile.conf +++ b/mkspecs/common/symbian/symbian-makefile.conf @@ -2,7 +2,11 @@ # qmake configuration for makefile based symbian # -MAKEFILE_GENERATOR = SYMBIAN_UNIX +contains(QMAKE_HOST.os,Windows) { + MAKEFILE_GENERATOR = SYMBIAN_MINGW +} else { + MAKEFILE_GENERATOR = SYMBIAN_UNIX +} include(symbian.conf) |