mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
This is an intermediate step to have smaller unit tests. It is a trade off between having many many test executables compared to a few bigger ones. But this comes a lot closer to what QtTest is meant to be used.
29 lines
454 B
Prolog
29 lines
454 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus gui testlib widgets
|
|
|
|
TARGET = testguiutility
|
|
CONFIG -= app_bundle
|
|
CONFIG += blackconfig
|
|
CONFIG += blackmisc
|
|
CONFIG += blackgui
|
|
CONFIG += testcase
|
|
CONFIG += no_testcase_installs
|
|
|
|
TEMPLATE = app
|
|
|
|
DEPENDPATH += \
|
|
. \
|
|
$$SourceRoot/src \
|
|
$$SourceRoot/tests \
|
|
|
|
INCLUDEPATH += \
|
|
$$SourceRoot/src \
|
|
$$SourceRoot/tests \
|
|
|
|
SOURCES += testguiutility.cpp
|
|
|
|
DESTDIR = $$DestRoot/bin
|
|
|
|
load(common_post)
|