blob: 6adb51bd880b155f1b856639c113a30a5696f8e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
QT -= gui
TEMPLATE = subdirs
CONFIG += ordered
symbian: {
# Can't build two versions of lib with same name in symbian, so just build one
SUBDIRS = lib2 \
tst
} else:integrity {
# no shared support, empty test
} else {
SUBDIRS = lib \
lib2 \
tst
}
TARGET = tst_qlibrary
# no special install rule for subdir
INSTALLS =
CONFIG += parallel_test
win32:CONFIG+=insignificant_test # QTQAINFRA-428
|