summaryrefslogtreecommitdiffstats
path: root/mkspecs/android-g++
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>2013-04-10 10:17:30 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-11 13:36:17 +0200
commit6823f43bbcad6ed888b5138761ec4c37d7bc1905 (patch)
tree39a8e1cd883d04ff4456dbe3e957924c0949b7f8 /mkspecs/android-g++
parentdd567c68825e32f10f5079bc85e62384389aca16 (diff)
Android: Remove qdevice.pri warning in configure step
Use the appropriate way to load the .pri file which also checks for its existence before loading it. Change-Id: I7d36da1593bb7fa1b5f6fd4d10b69e20c6aaa836 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'mkspecs/android-g++')
-rw-r--r--mkspecs/android-g++/qmake.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/mkspecs/android-g++/qmake.conf b/mkspecs/android-g++/qmake.conf
index e12bb03560..c780e2f0d5 100644
--- a/mkspecs/android-g++/qmake.conf
+++ b/mkspecs/android-g++/qmake.conf
@@ -6,10 +6,11 @@ QMAKE_COMPILER = gcc
CONFIG += android_install
DEFINES += QT_NO_PRINTDIALOG
-include(../qdevice.pri)
include(../common/linux.conf)
include(../common/gcc-base-unix.conf)
+load(device_config)
+
# Passing in -win32 to qmake (from NQTC) causes this condition to pass, however
# qmake complains that -win32 is deprecated; should find another way, Q_OS_WIN
# should really be all QMAKE_HOST.os needs to depend on?