45b0f1be68
Macros and the await helper function from qfunctions_winrt(_p).h are needed in other Qt modules which use UWP APIs on desktop windows. Task-number: QTBUG-84434 Change-Id: Ice09c11436ad151c17bdccd2c7defadd08c13925 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
29 lines
872 B
Prolog
29 lines
872 B
Prolog
CONFIG += testcase
|
|
|
|
QT += widgets widgets-private testlib
|
|
QT += core-private gui-private
|
|
|
|
SOURCES += ../tst_qapplication.cpp
|
|
|
|
builtin_testdata: DEFINES += BUILTIN_TESTDATA
|
|
|
|
TESTDATA = ../test/test.pro ../tmp/README ../modal
|
|
|
|
!android: SUBPROGRAMS = desktopsettingsaware modal
|
|
|
|
debug_and_release {
|
|
CONFIG(debug, debug|release) {
|
|
TARGET = ../../debug/tst_qapplication
|
|
!android: TEST_HELPER_INSTALLS = ../debug/helper
|
|
for(file, SUBPROGRAMS): TEST_HELPER_INSTALLS += "../debug/$${file}"
|
|
} else {
|
|
TARGET = ../../release/tst_qapplication
|
|
!android: TEST_HELPER_INSTALLS = ../release/helper
|
|
for(file, SUBPROGRAMS): TEST_HELPER_INSTALLS += "../release/$${file}"
|
|
}
|
|
} else {
|
|
TARGET = ../tst_qapplication
|
|
!android: TEST_HELPER_INSTALLS = ../helper
|
|
for(file, SUBPROGRAMS): TEST_HELPER_INSTALLS += "../$${file}"
|
|
}
|