added install code to .pro
[tomamp] / tomamp.pro
index 9cc2006..87474f9 100644 (file)
@@ -35,3 +35,37 @@ RESOURCES += \
 OTHER_FILES += \
     bugs.txt \
     README
+
+unix {
+    # VARIABLES
+    isEmpty(PREFIX):PREFIX = /usr #/local ?
+    BINDIR = $$PREFIX/bin
+    DATADIR = $$PREFIX/share
+    DEFINES += DATADIR=\"$$DATADIR\" \
+        PKGDATADIR=\"$$PKGDATADIR\"
+
+    contains(QT_CONFIG, hildon):{
+          DEFINES += CHIMGDIR=\'\"$$DATADIR/$${TARGET}\"\'
+    }
+    # MAKE INSTALL
+    INSTALLS += target \
+        imagery \
+        desktop \
+        iconxpm \
+        icon26 \
+        icon40 \
+        icon64
+    target.path = $$BINDIR
+    imagery.path = $$DATADIR/$${TARGET}/images
+    imagery.files += ../src/images/*png
+    desktop.path = $$DATADIR/applications/hildon
+    desktop.files += $${TARGET}.desktop
+    iconxpm.path = $$DATADIR/pixmap
+    iconxpm.files += ../data/maemo/$${TARGET}.xpm
+    icon26.path = $$DATADIR/icons/hicolor/26x26/apps
+    icon26.files += ../data/26x26/Tomamp.png
+    icon40.path = $$DATADIR/icons/hicolor/40x40/apps
+    icon40.files += ../data/40x40/Tomamp.png
+    icon64.path = $$DATADIR/icons/hicolor/64x64/apps
+    icon64.files += ../data/64x64/Tomamp.png
+}