author | kergoth <kergoth> | 2003-01-16 06:33:48 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 06:33:48 (UTC) |
commit | 711c066cc55172ec77749a369ba0273df73037b2 (patch) (side-by-side diff) | |
tree | 3b574a4e10f41af5f82c803606f8a79bd916a661 | |
parent | 9a90cb1a9e61d2bc3298f2131671d9f32abbac5a (diff) | |
download | opie-711c066cc55172ec77749a369ba0273df73037b2.zip opie-711c066cc55172ec77749a369ba0273df73037b2.tar.gz opie-711c066cc55172ec77749a369ba0273df73037b2.tar.bz2 |
Adjust included pro file to handle target path change depending on lib/nonlib.. preparing ipk generation via 'make install'.
-rw-r--r-- | include.pro | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include.pro b/include.pro index fb27a6d..301d6a8 100644 --- a/include.pro +++ b/include.pro @@ -1,45 +1,53 @@ # make install # base opie install path outdir = /opt/QtPalmtop +contains( TEMPLATE, lib ) { + target.path = $$outdir/lib +} +!contains( TEMPLATE, lib ) { + target.path = $$outdir/bin +} +INSTALLS += target + # 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 -noobsolete $(PRO) lrelease.target = lrelease lrelease.commands = lrelease $(PRO) QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease |