Version 0.2.1
[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 RESOURCES += \
43     kitchenalert.qrc
44
45
46 unix {
47   #VARIABLES
48   isEmpty(PREFIX) {
49     PREFIX = /usr/local
50   }
51   BINDIR = $$PREFIX/bin
52   DATADIR =$$PREFIX/share
53
54   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
55
56   #MAKE INSTALL
57
58   INSTALLS += target desktop 
59
60   target.path =$$BINDIR
61
62   desktop.path = $$DATADIR/applications/hildon
63   desktop.files += $${TARGET}.desktop
64
65 }