6b29e881cd
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: I3c1d993d5682db913aadc267d98a638061f393d6 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
25 lines
568 B
Prolog
25 lines
568 B
Prolog
############################################################
|
|
# Project file for autotest for file qfiledialog.h
|
|
############################################################
|
|
|
|
CONFIG += testcase
|
|
TARGET = tst_qfiledialog
|
|
QT += widgets widgets-private testlib
|
|
QT += core-private gui-private
|
|
SOURCES += tst_qfiledialog.cpp
|
|
|
|
wince* {
|
|
addFiles.files = *.cpp
|
|
addFiles.path = .
|
|
filesInDir.files = *.pro
|
|
filesInDir.path = someDir
|
|
DEPLOYMENT += addFiles filesInDir
|
|
}
|
|
|
|
wince* {
|
|
DEFINES += SRCDIR=\\\"./\\\"
|
|
} else {
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
}
|
|
|