author | kergoth <kergoth> | 2003-01-16 05:54:47 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 05:54:47 (UTC) |
commit | 216efd1cb2210211816b865b5574866e598bf3bd (patch) (side-by-side diff) | |
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 @@ +# make install + # base opie install path outdir = /opt/QtPalmtop # ipkg control files control.path = /CONTROL control.files = control postinst prerm postrm preinst conffiles INSTALLS += control # images, default is $$outdir/pics/$$TARGET pics.path = $$outdir/pics/$$TARGET pics.files = pics/* INSTALLS += pics # sounds, default path is $$outdir/sounds/$$TARGET sounds.path = $$outdir/sounds/$$TARGET sounds.files = sounds/* INSTALLS += sounds # init scripts, default path is /etc/init.d init.path = /etc/init.d init.files = init INSTALLS += init # data, default path is /usr/share/$$TARGET data.path = /usr/share/$$TARGET data.files = share/* INSTALLS += data # sounds, default path is $$outdir/sounds/$$TARGET sounds.path = $$outdir/sounds/$$TARGET sounds.files = sounds/* INSTALLS += sounds + +# new targets + +lupdate.target = lupdate +lupdate.commands = lupdate -noobselete $(DIST) + +lrelease.target = lrelease +lrelease.commands = lrelease $(DIST) + +QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease |