-rw-r--r-- | include.pro | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include.pro b/include.pro index 8503aa0..3ba8776 100644 --- a/include.pro +++ b/include.pro @@ -1,16 +1,16 @@ # make install # base opie install path prefix = /opt/QtPalmtop contains( TEMPLATE, lib ) { - target.path = $$prefix/lib + target.path = $$prefix/lib } !contains( TEMPLATE, lib ) { - target.path = $$prefix/bin + target.path = $$prefix/bin } INSTALLS += target # ipkg control files control.path = /CONTROL control.files = control postinst prerm postrm preinst conffiles @@ -71,7 +71,10 @@ ipk.target = ipk ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) INSTALL_ROOT="$$$$tmp" install && ipkg-build $$$$tmp; rm -rf $$$$tmp; ) QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk opie-lupdate opie-lrelease QMAKE_LFLAGS += -Wl,-rpath=$$prefix/lib QMAKE_LIBDIR += $(OPIEDIR)/lib +MOC_DIR=.moc/$(PLATFORM) +OBJECTS_DIR=.obj/$(PLATFORM) + include ( $(OPIEDIR)/gen.pro ) |