summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2018-11-21 13:45:12 +0100
committerOliver Wolff <oliver.wolff@qt.io>2018-11-22 07:46:25 +0000
commit66ef82484e7e8b1e6b8ebe8f97380b00280e173b (patch)
tree0be7c44af80541008f701618f723521114cbb0a7
parent5241d8c727d8e45d0266d486958e6e566563e1c8 (diff)
downloadqtlocation-66ef82484e7e8b1e6b8ebe8f97380b00280e173b.tar.gz
winrt: Fix msvc condition in configure tests
Versioned win32-msvc legacy scopes have been deprecated and might yield wrong results. As we do not support any versions older than the previously checked ones an unversioned check is fine. Change-Id: I234c5204c58e76a1a685f24c2aba316b1fe50508 Reviewed-by: Andy Shaw <andy.shaw@qt.io> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
-rw-r--r--config.tests/winrt/winrt.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.tests/winrt/winrt.pro b/config.tests/winrt/winrt.pro
index 1476abc9..06c2249e 100644
--- a/config.tests/winrt/winrt.pro
+++ b/config.tests/winrt/winrt.pro
@@ -1,5 +1,5 @@
SOURCES += main.cpp
-win32-msvc201* {
+msvc {
LIBS += runtimeobject.lib
CONFIG += console
}