Fixed problems with special html characters and entities in Norwegian version.
[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 HEADERS += mainwindow.h \
29     searchdialog.h \
30     resultwindow.h \
31     detailwindow.h \
32     settingsdialog.h \
33     aboutdialog.h \
34     buttonselector.h \
35     connectionselector.h \
36     daemon.h \
37     ../common/source.h \
38     ../common/eniro.h \
39     ../common/mobil1881.h \
40     ../common/sourcecoreconfig.h \
41     ../common/emptycoreconfig.h \
42     sourceguiconfig.h \
43     ../common/enirocoreconfig.h \
44     eniroguiconfig.h \
45     emptyguiconfig.h \
46     ../common/contactmanager.h \
47     ../common/db.h \
48     ../common/settings.h \
49     ../common/connectionmanager.h \
50     ../common/cache.h
51 TRANSLATIONS = ../common/translations/fi_FI.ts
52 RESOURCES = icons.grc ../common/translations.grc
53 INCLUDEPATH += ../common
54 CONFIG += link_pkgconfig
55 PKGCONFIG += libebook-1.2 gconf-2.0
56
57 unix {
58   #VARIABLES
59   isEmpty(PREFIX) {
60     PREFIX = /usr
61   }
62
63   BINDIR = $$PREFIX/bin
64   DATADIR =$$PREFIX/share
65
66   DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
67
68   #MAKE INSTALL
69
70   INSTALLS += target desktop iconxpm icon26 icon48 icon64
71
72   target.path =$$BINDIR
73
74   desktop.path = $$DATADIR/applications/hildon
75   desktop.files += data/$${TARGET}.desktop
76
77   iconxpm.path = $$DATADIR/pixmap
78   iconxpm.files += data/maemo/$${TARGET}.xpm
79
80   icon26.path = $$DATADIR/icons/hicolor/26x26/apps
81   icon26.files += data/26x26/$${TARGET}.png
82
83   icon48.path = $$DATADIR/icons/hicolor/48x48/apps
84   icon48.files += data/48x48/$${TARGET}.png
85
86   icon64.path = $$DATADIR/icons/hicolor/64x64/apps
87   icon64.files += data/64x64/$${TARGET}.png
88 }