Changed search to retry automatically couple of times before failing.
[jenirok] / src / gui / gui.pro
1 QT += network sql maemo5
2 TARGET = jenirok
3 TEMPLATE = app
4 SOURCES += main.cpp \
5     mainwindow.cpp \
6     searchdialog.cpp \
7     resultwindow.cpp \
8     detailwindow.cpp \
9     settingsdialog.cpp \
10     aboutdialog.cpp \
11     buttonselector.cpp \
12     connectionselector.cpp \
13     daemon.cpp \
14     ../common/source.cpp \
15     ../common/eniro.cpp \
16     ../common/mobil1881.cpp \
17     ../common/sourcecoreconfig.cpp \
18     ../common/emptycoreconfig.cpp \
19     sourceguiconfig.cpp \
20     ../common/enirocoreconfig.cpp \
21     eniroguiconfig.cpp \
22     emptyguiconfig.cpp \
23     ../common/contactmanager.cpp \
24     ../common/db.cpp \
25     ../common/settings.cpp \
26     ../common/connectionmanager.cpp \ 
27     ../common/cache.cpp \
28     ../common/dastelefonbuch.cpp \
29     logwindow.cpp \
30     listwidget.cpp \
31     ovimaps.cpp
32 HEADERS += mainwindow.h \
33     searchdialog.h \
34     resultwindow.h \
35     detailwindow.h \
36     settingsdialog.h \
37     aboutdialog.h \
38     buttonselector.h \
39     connectionselector.h \
40     daemon.h \
41     ../common/source.h \
42     ../common/eniro.h \
43     ../common/mobil1881.h \
44     ../common/sourcecoreconfig.h \
45     ../common/emptycoreconfig.h \
46     sourceguiconfig.h \
47     ../common/enirocoreconfig.h \
48     eniroguiconfig.h \
49     emptyguiconfig.h \
50     ../common/contactmanager.h \
51     ../common/db.h \
52     ../common/settings.h \
53     ../common/connectionmanager.h \
54     ../common/cache.h \
55     ../common/dastelefonbuch.h \
56     logwindow.h \
57     listwidget.h \
58     ovimaps.h
59 RESOURCES = icons.qrc ../common/translations.qrc
60 TRANSLATIONS = ../common/translations/fi_FI.ts
61 INCLUDEPATH += ../common
62 CONFIG += link_pkgconfig
63 PKGCONFIG += libebook-1.2 gconf-2.0
64
65 unix {
66   #VARIABLES
67   isEmpty(PREFIX) {
68     PREFIX = /usr
69   }
70
71   BINDIR = $$PREFIX/bin
72   DATADIR =$$PREFIX/share
73
74   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
75
76   #MAKE INSTALL
77
78   INSTALLS += target desktop iconxpm icon26 icon48 icon64
79
80   target.path =$$BINDIR
81
82   desktop.path = $$DATADIR/applications/hildon
83   desktop.files += data/$${TARGET}.desktop
84
85   iconxpm.path = $$DATADIR/pixmap
86   iconxpm.files += data/maemo/$${TARGET}.xpm
87
88   icon26.path = $$DATADIR/icons/hicolor/26x26/apps
89   icon26.files += data/26x26/$${TARGET}.png
90
91   icon48.path = $$DATADIR/icons/hicolor/48x48/apps
92   icon48.files += data/48x48/$${TARGET}.png
93
94   icon64.path = $$DATADIR/icons/hicolor/64x64/apps
95   icon64.files += data/64x64/$${TARGET}.png
96 }