author | mickeyl <mickeyl> | 2003-09-21 11:50:39 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-09-21 11:50:39 (UTC) |
commit | bef84fa57fcb1ea5815ea55be7ac12b1a9df0c24 (patch) (unidiff) | |
tree | 9e1458ac3d4e7eb68068ae322b96f6e82470ab67 /include.pro | |
parent | 2fbd2230957098e5601d9d5c4b04a4af220afbce (diff) | |
download | opie-bef84fa57fcb1ea5815ea55be7ac12b1a9df0c24.zip opie-bef84fa57fcb1ea5815ea55be7ac12b1a9df0c24.tar.gz opie-bef84fa57fcb1ea5815ea55be7ac12b1a9df0c24.tar.bz2 |
fix app building in non-quicklaunch-mode
-rw-r--r-- | include.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include.pro b/include.pro index 43efea5..70ed731 100644 --- a/include.pro +++ b/include.pro | |||
@@ -1,48 +1,49 @@ | |||
1 | include ( $(OPIEDIR)/gen.pro ) | 1 | include ( $(OPIEDIR)/gen.pro ) |
2 | 2 | ||
3 | # base opie install path | 3 | # base opie install path |
4 | prefix = /opt/QtPalmtop | 4 | prefix = /opt/QtPalmtop |
5 | 5 | ||
6 | contains( CONFIG, quick-app-lib ) { | 6 | contains( CONFIG, quick-app-lib ) { |
7 | TEMPLATE = lib | 7 | TEMPLATE = lib |
8 | DESTDIR = $(OPIEDIR)/plugins/application | 8 | DESTDIR = $(OPIEDIR)/plugins/application |
9 | DEFINES += OPIE_APP_INTERFACE | 9 | DEFINES += OPIE_APP_INTERFACE |
10 | !contains( TARGET, launcher ) { | 10 | !contains( TARGET, launcher ) { |
11 | message( Linking $$TARGET to quicklauncher ) | 11 | message( Linking $$TARGET to quicklauncher ) |
12 | system( rm -f $$(OPIEDIR)/bin/$$TARGET ) | 12 | system( rm -f $$(OPIEDIR)/bin/$$TARGET ) |
13 | system( ln -s quicklauncher $$(OPIEDIR)/bin/$$TARGET ) | 13 | system( ln -s quicklauncher $$(OPIEDIR)/bin/$$TARGET ) |
14 | } | 14 | } |
15 | } | 15 | } |
16 | 16 | ||
17 | contains ( CONFIG, quick-app-bin ) { | 17 | contains ( CONFIG, quick-app-bin ) { |
18 | TEMPLATE = app | 18 | TEMPLATE = app |
19 | DESTDIR = $(OPIEDIR)/bin | 19 | DESTDIR = $(OPIEDIR)/bin |
20 | DEFINES -= OPIE_APP_INTERFACE | 20 | DEFINES -= OPIE_APP_INTERFACE |
21 | message( Touching plugins/application/lib$$TARGET.so ) | 21 | message( Touching plugins/application/lib$${TARGET}.so ) |
22 | system( touch $$(OPIEDIR)/plugins/application/lib$$TARGET.so ) | 22 | system( touch $$(OPIEDIR)/plugins/application/lib$${TARGET}.so ) |
23 | } | 23 | } |
24 | 24 | ||
25 | |||
25 | contains( TEMPLATE, lib ) { | 26 | contains( TEMPLATE, lib ) { |
26 | target.path = $$prefix/lib | 27 | target.path = $$prefix/lib |
27 | } | 28 | } |
28 | !contains( TEMPLATE, lib ) { | 29 | !contains( TEMPLATE, lib ) { |
29 | target.path = $$prefix/bin | 30 | target.path = $$prefix/bin |
30 | } | 31 | } |
31 | INSTALLS += target | 32 | INSTALLS += target |
32 | 33 | ||
33 | # ipkg control files | 34 | # ipkg control files |
34 | control.path = /CONTROL | 35 | control.path = /CONTROL |
35 | control.files = control postinst prerm postrm preinst conffiles | 36 | control.files = control postinst prerm postrm preinst conffiles |
36 | INSTALLS += control | 37 | INSTALLS += control |
37 | 38 | ||
38 | # images, default is $$prefix/pics/$$TARGET | 39 | # images, default is $$prefix/pics/$$TARGET |
39 | pics.path = $$prefix/pics/$$TARGET | 40 | pics.path = $$prefix/pics/$$TARGET |
40 | pics.files = pics/* | 41 | pics.files = pics/* |
41 | INSTALLS += pics | 42 | INSTALLS += pics |
42 | 43 | ||
43 | # sounds, default path is $$prefix/sounds/$$TARGET | 44 | # sounds, default path is $$prefix/sounds/$$TARGET |
44 | sounds.path = $$prefix/sounds/$$TARGET | 45 | sounds.path = $$prefix/sounds/$$TARGET |
45 | sounds.files = sounds/* | 46 | sounds.files = sounds/* |
46 | INSTALLS += sounds | 47 | INSTALLS += sounds |
47 | 48 | ||
48 | # init scripts, default path is /etc/init.d | 49 | # init scripts, default path is /etc/init.d |