diff --git a/share/qtcreator/qml/qmldump/qmldump.pro b/share/qtcreator/qml/qmldump/qmldump.pro index ea1fb42c0fe..1b86e6a2ebf 100644 --- a/share/qtcreator/qml/qmldump/qmldump.pro +++ b/share/qtcreator/qml/qmldump/qmldump.pro @@ -8,6 +8,10 @@ TARGET = qmldump QT += declarative CONFIG += console +### FIXME: only debug plugins are now supported. +CONFIG -= release +CONFIG += debug + TEMPLATE = app SOURCES += main.cpp diff --git a/share/qtcreator/qml/qmlobserver/qmlobserver.pro b/share/qtcreator/qml/qmlobserver/qmlobserver.pro index e4f765c21d6..06df9ecaccd 100644 --- a/share/qtcreator/qml/qmlobserver/qmlobserver.pro +++ b/share/qtcreator/qml/qmlobserver/qmlobserver.pro @@ -1,6 +1,10 @@ TEMPLATE = app DEFINES += QMLOBSERVER +### FIXME: only debug plugins are now supported. +CONFIG -= release +CONFIG += debug + include(qml.pri) SOURCES += main.cpp