summaryrefslogtreecommitdiffstats
path: root/tools/qmake/mkspecs/features/functions.prf
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2016-01-29 12:22:11 +0100
committerMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2016-02-02 07:47:14 +0000
commit82f4d13a13b40d9cb7710f6dd4190175a272a394 (patch)
tree4e6acc073ef865c6f10eacb9b6e125d04bd391cb /tools/qmake/mkspecs/features/functions.prf
parented5b65c70397f3ea9fa524e7f0b98a48a70ddc88 (diff)
winrt: Disable build
WinRT is not a supported platform and checks to disable the build have been removed in previous refactorings. Change-Id: I22d2a8ae28f7cfaa3b962ac353ad5c14f11771a9 Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'tools/qmake/mkspecs/features/functions.prf')
-rw-r--r--tools/qmake/mkspecs/features/functions.prf4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index e9d801e51..2df689bca 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -6,6 +6,10 @@ defineTest(isPlatformSupported) {
}
gcc:!clang:!isGCCVersionSupported(): return(false)
} else:win32 {
+ winrt {
+ skipBuild("WinRT is not supported.")
+ return(false)
+ }
msvc {
!equals(MSVC_VER, "12.0"):!equals(MSVC_VER, "14.0") {
skipBuild("Qt WebEngine on Windows requires MSVC 2013 or MSVC 2015.")