blob: 3fca1f7948d30f7b05a110d91fc3722d206e07f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# we don't want to modify subdir .pro's
!contains( TEMPLATE, subdirs ) {
# if it's already a lib, we ignore it
!contains( TEMPLATE, lib ) {
contains( CONFIG, quick-app ) {
message ( Building a quicklaunch application )
TEMPLATE = lib
CONFIG += plugin
DEFINES += OPIE_APP_INTERFACE
}
!contains ( CONFIG, quick-app ) {
message( Building a standalone application )
TEMPLATE = app
DEFINES -= OPIE_APP_INTERFACE
}
}
}
|