summaryrefslogtreecommitdiffstats
path: root/mkspecs/devices
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2017-01-20 09:47:13 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-01-21 08:28:40 +0000
commita828a02d9f86b5b1d472768a5a52f963c6ff8175 (patch)
treebe0bc873d0ece1a53ec67894295da58158daefd4 /mkspecs/devices
parentebffedb11dbce9391982dd3646b5466103aa5705 (diff)
Fix sanity checks in DRIVE CX and Jetson K1 Pro specs
This amends e58eb3d6. Task-number: QTBUG-58287 Change-Id: Ia4b5d0cf5f71d1e0977e3c8674ef08929112f7e9 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
Diffstat (limited to 'mkspecs/devices')
-rw-r--r--mkspecs/devices/linux-drive-cx-g++/qmake.conf10
-rw-r--r--mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf10
2 files changed, 16 insertions, 4 deletions
diff --git a/mkspecs/devices/linux-drive-cx-g++/qmake.conf b/mkspecs/devices/linux-drive-cx-g++/qmake.conf
index 985f8626ad..a658f29deb 100644
--- a/mkspecs/devices/linux-drive-cx-g++/qmake.conf
+++ b/mkspecs/devices/linux-drive-cx-g++/qmake.conf
@@ -16,8 +16,6 @@
include(../common/linux_device_pre.conf)
-isEmpty(VIBRANTE_SDK_TOPDIR):error("You must pass -device-option VIBRANTE_SDK_TOPDIR=/path/to/sdk")
-
QMAKE_INCDIR += \
$${VIBRANTE_SDK_TOPDIR}/include \
$$[QT_SYSROOT]/usr/include
@@ -43,4 +41,12 @@ COMPILER_FLAGS += -mtune=cortex-a57.cortex-a53 -march=armv8-a
EGLFS_DEVICE_INTEGRATION = eglfs_kms_egldevice
include(../common/linux_arm_device_post.conf)
+
+# override the default from linux_arm_device_post.conf
+defineTest(qtConfSanitizeMkspec) {
+ isEmpty(VIBRANTE_SDK_TOPDIR): \
+ error("You must pass -device-option VIBRANTE_SDK_TOPDIR=/path/to/sdk")
+ deviceSanityCheckCompiler()
+}
+
load(qt_config)
diff --git a/mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf b/mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf
index 31aacad99f..1f44c47151 100644
--- a/mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf
+++ b/mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf
@@ -14,8 +14,6 @@
include(../common/linux_device_pre.conf)
-isEmpty(VIBRANTE_SDK_TOPDIR):error("You must pass -device-option VIBRANTE_SDK_TOPDIR=/path/to/sdk")
-
QMAKE_INCDIR += \
$${VIBRANTE_SDK_TOPDIR}/include \
$$[QT_SYSROOT]/usr/include
@@ -38,4 +36,12 @@ COMPILER_FLAGS += -mtune=cortex-a15 -march=armv7-a -mfpu=neon-vfpv
EGLFS_DEVICE_INTEGRATION = eglfs_kms_egldevice
include(../common/linux_arm_device_post.conf)
+
+# override the default from linux_arm_device_post.conf
+defineTest(qtConfSanitizeMkspec) {
+ isEmpty(VIBRANTE_SDK_TOPDIR): \
+ error("You must pass -device-option VIBRANTE_SDK_TOPDIR=/path/to/sdk")
+ deviceSanityCheckCompiler()
+}
+
load(qt_config)