author | kergoth <kergoth> | 2003-01-16 05:54:47 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 05:54:47 (UTC) |
commit | 216efd1cb2210211816b865b5574866e598bf3bd (patch) (unidiff) | |
tree | 117f9630c0e16a78cbf0342225d010f9048412e4 | |
parent | 6237632680a8ea7817ee21ba68e3ecd263fd60e3 (diff) | |
download | opie-216efd1cb2210211816b865b5574866e598bf3bd.zip opie-216efd1cb2210211816b865b5574866e598bf3bd.tar.gz opie-216efd1cb2210211816b865b5574866e598bf3bd.tar.bz2 |
Added targets for lupdate/lrelease, for i18n package builds, to root pro file.
-rw-r--r-- | include.pro | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include.pro b/include.pro index ce2aa1f..625fb70 100644 --- a/include.pro +++ b/include.pro | |||
@@ -1,32 +1,44 @@ | |||
1 | # make install | ||
2 | |||
1 | # base opie install path | 3 | # base opie install path |
2 | outdir = /opt/QtPalmtop | 4 | outdir = /opt/QtPalmtop |
3 | 5 | ||
4 | # ipkg control files | 6 | # ipkg control files |
5 | control.path = /CONTROL | 7 | control.path = /CONTROL |
6 | control.files = control postinst prerm postrm preinst conffiles | 8 | control.files = control postinst prerm postrm preinst conffiles |
7 | INSTALLS += control | 9 | INSTALLS += control |
8 | 10 | ||
9 | # images, default is $$outdir/pics/$$TARGET | 11 | # images, default is $$outdir/pics/$$TARGET |
10 | pics.path = $$outdir/pics/$$TARGET | 12 | pics.path = $$outdir/pics/$$TARGET |
11 | pics.files = pics/* | 13 | pics.files = pics/* |
12 | INSTALLS += pics | 14 | INSTALLS += pics |
13 | 15 | ||
14 | # sounds, default path is $$outdir/sounds/$$TARGET | 16 | # sounds, default path is $$outdir/sounds/$$TARGET |
15 | sounds.path = $$outdir/sounds/$$TARGET | 17 | sounds.path = $$outdir/sounds/$$TARGET |
16 | sounds.files = sounds/* | 18 | sounds.files = sounds/* |
17 | INSTALLS += sounds | 19 | INSTALLS += sounds |
18 | 20 | ||
19 | # init scripts, default path is /etc/init.d | 21 | # init scripts, default path is /etc/init.d |
20 | init.path = /etc/init.d | 22 | init.path = /etc/init.d |
21 | init.files = init | 23 | init.files = init |
22 | INSTALLS += init | 24 | INSTALLS += init |
23 | 25 | ||
24 | # data, default path is /usr/share/$$TARGET | 26 | # data, default path is /usr/share/$$TARGET |
25 | data.path = /usr/share/$$TARGET | 27 | data.path = /usr/share/$$TARGET |
26 | data.files = share/* | 28 | data.files = share/* |
27 | INSTALLS += data | 29 | INSTALLS += data |
28 | 30 | ||
29 | # sounds, default path is $$outdir/sounds/$$TARGET | 31 | # sounds, default path is $$outdir/sounds/$$TARGET |
30 | sounds.path = $$outdir/sounds/$$TARGET | 32 | sounds.path = $$outdir/sounds/$$TARGET |
31 | sounds.files = sounds/* | 33 | sounds.files = sounds/* |
32 | INSTALLS += sounds | 34 | INSTALLS += sounds |
35 | |||
36 | # new targets | ||
37 | |||
38 | lupdate.target = lupdate | ||
39 | lupdate.commands = lupdate -noobselete $(DIST) | ||
40 | |||
41 | lrelease.target = lrelease | ||
42 | lrelease.commands = lrelease $(DIST) | ||
43 | |||
44 | QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease | ||