Couple of unnecessary includes removed.
[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 HEADERS += calllistener.h \
20     informationbox.h \
21     ../common/source.h \
22     ../common/eniro.h \
23     ../common/mobil1881.h \
24     ../common/enirocoreconfig.h \
25     ../common/sourcecoreconfig.h \
26     ../common/emptycoreconfig.h \
27     ../common/contactmanager.h \
28     ../common/db.h \
29     ../common/settings.h \
30     ../common/connectionmanager.h \
31     ../common/cache.h
32 TRANSLATIONS = ../common/translations/fi_FI.ts
33 RESOURCES = ../common/translations.grc
34 INCLUDEPATH += ../common
35 CONFIG += link_pkgconfig
36 PKGCONFIG += libebook-1.2 gconf-2.0
37
38 unix {
39   #VARIABLES
40   isEmpty(PREFIX) {
41     PREFIX = /usr
42   }
43
44   BINDIR = $$PREFIX/bin
45   DATADIR =$$PREFIX/share
46
47   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
48
49   #MAKE INSTALL
50
51   INSTALLS += target init event
52
53   target.path =$$BINDIR
54
55   init.path = /etc/init.d
56   init.files += data/init.d/jenirokd
57
58   event.path = /etc/event.d
59   event.files += data/event.d/jenirokd
60 }