0
|
1 |
QT -= gui
|
|
2 |
TEMPLATE = subdirs
|
|
3 |
CONFIG += ordered
|
|
4 |
|
|
5 |
symbian: {
|
|
6 |
# Can't build two versions of lib with same name in symbian, so just build one
|
|
7 |
SUBDIRS = lib2 \
|
|
8 |
tst
|
|
9 |
} else {
|
|
10 |
SUBDIRS = lib \
|
|
11 |
lib2 \
|
|
12 |
tst
|
|
13 |
}
|
|
14 |
TARGET = tst_qlibrary
|
|
15 |
|
|
16 |
# no special install rule for subdir
|
|
17 |
INSTALLS =
|