working up/down/del controls on each row
[tomamp] / tomamp.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2010-07-15T14:44:54
4 #
5 #-------------------------------------------------
6
7 QT       += core gui phonon
8
9 TARGET = tomamp
10 TEMPLATE = app
11
12
13 SOURCES += main.cpp\
14         mainwindow.cpp \
15     playlistmanager.cpp
16
17 HEADERS  += mainwindow.h \
18     playlistmanager.h
19
20 FORMS    +=
21
22 CONFIG += mobility
23 MOBILITY = 
24
25 symbian {
26     TARGET.UID3 = 0xe3107f4b
27     # TARGET.CAPABILITY += 
28     TARGET.EPOCSTACKSIZE = 0x14000
29     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
30 }
31
32 RESOURCES += \
33     ampres.qrc
34
35 OTHER_FILES += \
36     bugs.txt \
37     README
38
39 unix {
40     # VARIABLES
41     isEmpty(PREFIX):PREFIX = /usr #/local ?
42     BINDIR = $$PREFIX/bin
43     DATADIR = $$PREFIX/share
44     DEFINES += DATADIR=\"$$DATADIR\" \
45         PKGDATADIR=\"$$PKGDATADIR\"
46
47     contains(QT_CONFIG, hildon):{
48           DEFINES += CHIMGDIR=\'\"$$DATADIR/$${TARGET}\"\'
49     }
50     # MAKE INSTALL
51     INSTALLS += target \
52         imagery \
53         desktop \
54         iconxpm \
55         icon26 \
56         icon40 \
57         icon64
58     target.path = $$BINDIR
59     imagery.path = $$DATADIR/$${TARGET}/images
60     imagery.files += ../src/images/*png
61     desktop.path = $$DATADIR/applications/hildon
62     desktop.files += $${TARGET}.desktop
63     iconxpm.path = $$DATADIR/pixmap
64     iconxpm.files += ../data/maemo/$${TARGET}.xpm
65     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
66     icon26.files += ../data/26x26/Tomamp.png
67     icon40.path = $$DATADIR/icons/hicolor/40x40/apps
68     icon40.files += ../data/40x40/Tomamp.png
69     icon64.path = $$DATADIR/icons/hicolor/64x64/apps
70     icon64.files += ../data/64x64/Tomamp.png
71 }