c0fb09465b
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: I97046aa51f1b3fc100e2eb2fa115f1bf8ae6437d Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
20 lines
500 B
Prolog
20 lines
500 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qicoimageformat
|
|
SOURCES+= tst_qicoimageformat.cpp
|
|
QT += testlib
|
|
|
|
wince*: {
|
|
DEFINES += SRCDIR=\\\".\\\"
|
|
addFiles.files = icons
|
|
addFiles.path = .
|
|
CONFIG(debug, debug|release):{
|
|
addPlugins.files = $$QT_BUILD_TREE/plugins/imageformats/qico4d.dll
|
|
} else {
|
|
addPlugins.files = $$QT_BUILD_TREE/plugins/imageformats/qico4.dll
|
|
}
|
|
addPlugins.path = imageformats
|
|
DEPLOYMENT += addFiles addPlugins
|
|
} else {
|
|
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
}
|