qttest_p4.prf was added as a convenience for Qt's own autotests in Qt4. It enables various crufty undocumented magic, of dubious value. Stop using it, and explicitly enable the things from it which we want. Change-Id: I3f49fd3b79899eff1d6ad9458143f34419026276 Reviewed-on: http://codereview.qt-project.org/6286 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
15 lines
315 B
Prolog
15 lines
315 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qmediapluginloader
|
|
|
|
QT += multimedia-private testlib
|
|
CONFIG += no_private_qt_headers_warning
|
|
|
|
SOURCES += tst_qmediapluginloader.cpp
|
|
|
|
wince* {
|
|
PLUGIN_DEPLOY.sources = $$OUTPUT_DIR/plugins/mediaservice/*.dll
|
|
PLUGIN_DEPLOY.path = mediaservice
|
|
DEPLOYMENT += PLUGIN_DEPLOY
|
|
}
|
|
|