aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2021-08-05 09:39:12 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2021-08-05 09:39:52 +0200
commit40ba39d488d35a1bf1eb56c512dcacfed5bcf406 (patch)
treebca24851967b47ca353f38d01f73c1cdaf760007
parentc4fbe886adcf0c58c272c6055e8126bba4555e11 (diff)
Actually remove effects from default
This was breaking the Qt 6 based builds. Change-Id: Ie76c5d6148537ceadecc916d3caff5375e66b927 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/imports/imports.pro5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/imports/imports.pro b/src/imports/imports.pro
index 86017cf..eddff0f 100644
--- a/src/imports/imports.pro
+++ b/src/imports/imports.pro
@@ -1,16 +1,15 @@
TEMPLATE = subdirs
SUBDIRS += \
components \
- effects \
flowview \
multitext \
tools \
logichelper \
compatibility
-equals(QT_MAJOR_VERSION , 5){
+equals(QT_MAJOR_VERSION, 5) {
SUBDIRS += effects
}
-equals(QT_MAJOR_VERSION , 6) {
+equals(QT_MAJOR_VERSION, 6) {
SUBDIRS += effects_qt6
}