-rw-r--r-- | include.pro | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include.pro b/include.pro index 0ce6424..da2da04 100644 --- a/include.pro +++ b/include.pro @@ -3,9 +3,9 @@ # base opie install path -outdir = /opt/QtPalmtop +prefix = /opt/QtPalmtop contains( TEMPLATE, lib ) { - target.path = $$outdir/lib + target.path = $$prefix/lib } !contains( TEMPLATE, lib ) { - target.path = $$outdir/bin + target.path = $$prefix/bin } @@ -18,4 +18,4 @@ INSTALLS += control -# images, default is $$outdir/pics/$$TARGET -pics.path = $$outdir/pics/$$TARGET +# images, default is $$prefix/pics/$$TARGET +pics.path = $$prefix/pics/$$TARGET pics.files = pics/* @@ -23,4 +23,4 @@ INSTALLS += pics -# sounds, default path is $$outdir/sounds/$$TARGET -sounds.path = $$outdir/sounds/$$TARGET +# sounds, default path is $$prefix/sounds/$$TARGET +sounds.path = $$prefix/sounds/$$TARGET sounds.files = sounds/* @@ -38,3 +38,3 @@ INSTALLS += data -etc.path = $$outdir/etc/ +etc.path = $$prefix/etc/ etc.files = etc/* @@ -42,3 +42,3 @@ INSTALLS += etc -apps.path = $$outdir/apps/ +apps.path = $$prefix/apps/ apps.files = apps/* @@ -46,4 +46,4 @@ INSTALLS += apps -# sounds, default path is $$outdir/sounds/$$TARGET -sounds.path = $$outdir/sounds/$$TARGET +# sounds, default path is $$prefix/sounds/$$TARGET +sounds.path = $$prefix/sounds/$$TARGET sounds.files = sounds/* @@ -68,3 +68,3 @@ ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) INSTALL_RO QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk -QMAKE_LFLAGS += -Wl,-rpath=$$outdir/lib +QMAKE_LFLAGS += -Wl,-rpath=$$prefix/lib QMAKE_LIBDIR += $(OPIEDIR)/lib |