summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf9
-rw-r--r--examples/dbus/chat/chat.pro2
-rw-r--r--examples/dbus/remotecontrolledcar/car/car.pro2
3 files changed, 4 insertions, 9 deletions
diff --git a/.qmake.conf b/.qmake.conf
deleted file mode 100644
index c95584a086..0000000000
--- a/.qmake.conf
+++ /dev/null
@@ -1,9 +0,0 @@
-load(qt_build_config)
-CONFIG += warning_clean
-
-DEFINES += QT_NO_JAVA_STYLE_ITERATORS
-
-QT_SOURCE_TREE = $$PWD
-QT_BUILD_TREE = $$shadowed($$PWD)
-
-MODULE_VERSION = 6.3.0
diff --git a/examples/dbus/chat/chat.pro b/examples/dbus/chat/chat.pro
index 631a876954..93d3178177 100644
--- a/examples/dbus/chat/chat.pro
+++ b/examples/dbus/chat/chat.pro
@@ -7,6 +7,8 @@ FORMS += chatmainwindow.ui chatsetnickname.ui
DBUS_ADAPTORS += org.example.chat.xml
DBUS_INTERFACES += org.example.chat.xml
+CONFIG += no_batch # work around QTBUG-96513
+
# install
target.path = $$[QT_INSTALL_EXAMPLES]/dbus/chat
INSTALLS += target
diff --git a/examples/dbus/remotecontrolledcar/car/car.pro b/examples/dbus/remotecontrolledcar/car/car.pro
index 35a186c7fe..5e354e3d0b 100644
--- a/examples/dbus/remotecontrolledcar/car/car.pro
+++ b/examples/dbus/remotecontrolledcar/car/car.pro
@@ -4,6 +4,8 @@ DBUS_ADAPTORS += car.xml
HEADERS += car.h
SOURCES += car.cpp main.cpp
+CONFIG += no_batch # work around QTBUG-96513
+
# install
target.path = $$[QT_INSTALL_EXAMPLES]/dbus/remotecontrolledcar/car
INSTALLS += target