Added call log and German translation.
[jenirok] / src / daemon / daemon.pro
1 QT += network sql maemo5
2 TARGET = jenirokd
3 CONFIG += qdbus
4 TEMPLATE = app
5 SOURCES += main.cpp \
6     calllistener.cpp \
7     informationbox.cpp \
8     ../common/source.cpp \
9     ../common/eniro.cpp \
10     ../common/mobil1881.cpp \
11     ../common/sourcecoreconfig.cpp \
12     ../common/enirocoreconfig.cpp \
13     ../common/emptycoreconfig.cpp \
14     ../common/contactmanager.cpp \
15     ../common/db.cpp \
16     ../common/settings.cpp \
17     ../common/connectionmanager.cpp \
18     ../common/cache.cpp \
19     ../common/dastelefonbuch.cpp
20 HEADERS += calllistener.h \
21     informationbox.h \
22     ../common/source.h \
23     ../common/eniro.h \
24     ../common/mobil1881.h \
25     ../common/enirocoreconfig.h \
26     ../common/sourcecoreconfig.h \
27     ../common/emptycoreconfig.h \
28     ../common/contactmanager.h \
29     ../common/db.h \
30     ../common/settings.h \
31     ../common/connectionmanager.h \
32     ../common/cache.h \
33     ../common/dastelefonbuch.h
34 RESOURCES = ../common/translations.qrc
35 INCLUDEPATH += ../common
36 CONFIG += link_pkgconfig
37 PKGCONFIG += libebook-1.2 gconf-2.0
38
39 unix {
40   #VARIABLES
41   isEmpty(PREFIX) {
42     PREFIX = /usr
43   }
44
45   BINDIR = $$PREFIX/bin
46   DATADIR =$$PREFIX/share
47
48   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
49
50   #MAKE INSTALL
51
52   INSTALLS += target init event
53
54   target.path =$$BINDIR
55
56   init.path = /etc/init.d
57   init.files += data/init.d/jenirokd
58
59   event.path = /etc/event.d
60   event.files += data/event.d/jenirokd
61 }