-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,17 +1,25 @@ # 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 |