Release 0.1 + a fix
[kitchenalert] / src / src.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2010-05-25T15:17:43
4 #
5 #-------------------------------------------------
6
7 QT       += core gui
8 QT      += phonon
9
10 TARGET = KitchenAlert
11 TEMPLATE = app
12
13
14 SOURCES += main.cpp\
15         kitchenalertmainwindow.cpp \
16     createtimersequencedialog.cpp \
17     timer.cpp \
18     currentalertstablemodel.cpp \
19     alertsound.cpp \
20     selectsounddialog.cpp
21
22 HEADERS  += kitchenalertmainwindow.h \
23     createtimersequencedialog.h \
24     timer.h \
25     currentalertstablemodel.h \
26     alertsound.h \
27     selectsounddialog.h
28
29 FORMS    += kitchenalertmainwindow.ui \
30     createtimersequencedialog.ui \
31     selectsounddialog.ui \
32     kitchenalertmainwindow.ui
33
34
35 symbian {
36     TARGET.UID3 = 0xe1020059
37     # TARGET.CAPABILITY += 
38     TARGET.EPOCSTACKSIZE = 0x14000
39     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
40 }
41
42
43 unix {
44   #VARIABLES
45   isEmpty(PREFIX) {
46     PREFIX = /usr/local
47   }
48   BINDIR = $$PREFIX/bin
49   DATADIR =$$PREFIX/share
50
51   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
52
53   #MAKE INSTALL
54
55   INSTALLS += target desktop service iconxpm icon26 icon48 icon64
56
57   target.path =$$BINDIR
58
59   desktop.path = $$DATADIR/applications/hildon
60   desktop.files += $${TARGET}.desktop
61
62   service.path = $$DATADIR/dbus-1/services
63   service.files += $${TARGET}.service
64
65   iconxpm.path = $$DATADIR/pixmap
66   iconxpm.files += ../data/maemo/$${TARGET}.xpm
67
68   icon26.path = $$DATADIR/icons/hicolor/26x26/apps
69   icon26.files += ../data/26x26/$${TARGET}.png
70
71   icon48.path = $$DATADIR/icons/hicolor/48x48/apps
72   icon48.files += ../data/48x48/$${TARGET}.png
73
74   icon64.path = $$DATADIR/icons/hicolor/64x64/apps
75   icon64.files += ../data/64x64/$${TARGET}.png
76 }