-rw-r--r-- | include.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include.pro b/include.pro index 625fb70..fb27a6d 100644 --- a/include.pro +++ b/include.pro | |||
@@ -1,44 +1,45 @@ | |||
1 | # make install | 1 | # make install |
2 | 2 | ||
3 | # base opie install path | 3 | # base opie install path |
4 | outdir = /opt/QtPalmtop | 4 | outdir = /opt/QtPalmtop |
5 | 5 | ||
6 | # ipkg control files | 6 | # ipkg control files |
7 | control.path = /CONTROL | 7 | control.path = /CONTROL |
8 | control.files = control postinst prerm postrm preinst conffiles | 8 | control.files = control postinst prerm postrm preinst conffiles |
9 | INSTALLS += control | 9 | INSTALLS += control |
10 | 10 | ||
11 | # images, default is $$outdir/pics/$$TARGET | 11 | # images, default is $$outdir/pics/$$TARGET |
12 | pics.path = $$outdir/pics/$$TARGET | 12 | pics.path = $$outdir/pics/$$TARGET |
13 | pics.files = pics/* | 13 | pics.files = pics/* |
14 | INSTALLS += pics | 14 | INSTALLS += pics |
15 | 15 | ||
16 | # sounds, default path is $$outdir/sounds/$$TARGET | 16 | # sounds, default path is $$outdir/sounds/$$TARGET |
17 | sounds.path = $$outdir/sounds/$$TARGET | 17 | sounds.path = $$outdir/sounds/$$TARGET |
18 | sounds.files = sounds/* | 18 | sounds.files = sounds/* |
19 | INSTALLS += sounds | 19 | INSTALLS += sounds |
20 | 20 | ||
21 | # init scripts, default path is /etc/init.d | 21 | # init scripts, default path is /etc/init.d |
22 | init.path = /etc/init.d | 22 | init.path = /etc/init.d |
23 | init.files = init | 23 | init.files = init |
24 | INSTALLS += init | 24 | INSTALLS += init |
25 | 25 | ||
26 | # data, default path is /usr/share/$$TARGET | 26 | # data, default path is /usr/share/$$TARGET |
27 | data.path = /usr/share/$$TARGET | 27 | data.path = /usr/share/$$TARGET |
28 | data.files = share/* | 28 | data.files = share/* |
29 | INSTALLS += data | 29 | INSTALLS += data |
30 | 30 | ||
31 | # sounds, default path is $$outdir/sounds/$$TARGET | 31 | # sounds, default path is $$outdir/sounds/$$TARGET |
32 | sounds.path = $$outdir/sounds/$$TARGET | 32 | sounds.path = $$outdir/sounds/$$TARGET |
33 | sounds.files = sounds/* | 33 | sounds.files = sounds/* |
34 | INSTALLS += sounds | 34 | INSTALLS += sounds |
35 | 35 | ||
36 | # new targets | 36 | # new targets |
37 | 37 | ||
38 | lupdate.target = lupdate | 38 | lupdate.target = lupdate |
39 | lupdate.commands = lupdate -noobselete $(DIST) | 39 | lupdate.commands = lupdate -noobsolete $(PRO) |
40 | 40 | ||
41 | lrelease.target = lrelease | 41 | lrelease.target = lrelease |
42 | lrelease.commands = lrelease $(DIST) | 42 | lrelease.commands = lrelease $(PRO) |
43 | 43 | ||
44 | QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease | 44 | QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease |
45 | |||