Added Das Telefonbuch support.
[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 TRANSLATIONS = ../common/translations/fi_FI.ts
35 RESOURCES = ../common/translations.grc
36 INCLUDEPATH += ../common
37 CONFIG += link_pkgconfig
38 PKGCONFIG += libebook-1.2 gconf-2.0
39
40 unix {
41   #VARIABLES
42   isEmpty(PREFIX) {
43     PREFIX = /usr
44   }
45
46   BINDIR = $$PREFIX/bin
47   DATADIR =$$PREFIX/share
48
49   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
50
51   #MAKE INSTALL
52
53   INSTALLS += target init event
54
55   target.path =$$BINDIR
56
57   init.path = /etc/init.d
58   init.files += data/init.d/jenirokd
59
60   event.path = /etc/event.d
61   event.files += data/event.d/jenirokd
62 }