summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/qt_prefix_build_check.prf
diff options
context:
space:
mode:
authorAmir Masoud Abdol <amir.abdol@qt.io>2023-02-21 15:31:18 +0100
committerAmir Masoud Abdol <amir.abdol@qt.io>2023-02-27 10:10:09 +0100
commit863eb576c879e0284e794b60ff8450c468f6ae3a (patch)
treed181c3e8af8f018deee0b3837ad5c959b3cf1463 /mkspecs/features/qt_prefix_build_check.prf
parentf75b29fbbde79d66ee539162441a007a90035b96 (diff)
Remove qmake files that provide support for building Qt modules
Repeating the body of the reported bug, "Building Qt modules with qmake is unsupported in Qt6 and since 6.5's switch to syncqt.cpp broken." [ChangeLog][qmake] Support for building Qt modules with qmake was removed. Pick-to: 6.5 Fixes: QTBUG-110134 Change-Id: Iee5aa5c85f7106bce742df448ec502e6cc039454 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'mkspecs/features/qt_prefix_build_check.prf')
-rw-r--r--mkspecs/features/qt_prefix_build_check.prf21
1 files changed, 0 insertions, 21 deletions
diff --git a/mkspecs/features/qt_prefix_build_check.prf b/mkspecs/features/qt_prefix_build_check.prf
deleted file mode 100644
index 5b21efa367..0000000000
--- a/mkspecs/features/qt_prefix_build_check.prf
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# W A R N I N G
-# -------------
-#
-# This file is not part of the Qt API. It exists purely as an
-# implementation detail. It may change from version to version
-# without notice, or even be removed.
-#
-# We mean it.
-#
-
-defineTest(qtIsPrefixBuild) {
- prefixdir = $$1
- # qtbase non-prefix build?
- exists($$prefixdir/.qmake.cache)|exists($$prefixdir/CMakeCache.txt): \
- return(false)
- # top-level non-prefix build?
- contains(prefixdir, .*/qtbase):if(exists($$dirname(prefixdir)/.qmake.super)|exists($$dirname(prefixdir)/CMakeCache.txt)): \
- return(false)
- return(true)
-}