show options dialog
[tomamp] / tomamp.pro
index 937cdbb..13eaa0f 100644 (file)
@@ -12,10 +12,12 @@ TEMPLATE = app
 
 SOURCES += main.cpp\
         mainwindow.cpp \
-    playlistmanager.cpp
+    playlistmanager.cpp \
+    optiondialog.cpp
 
 HEADERS  += mainwindow.h \
-    playlistmanager.h
+    playlistmanager.h \
+    optiondialog.h
 
 FORMS    +=
 
@@ -31,3 +33,41 @@ symbian {
 
 RESOURCES += \
     ampres.qrc
+
+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
+}