Added xdxf dict downloader
[mdictionary] / src / plugins / xdxf / xdxf.pro
1 TARGET = xdxf
2
3 include(../plugin.pri)
4
5 QT = core \
6     gui \
7     xml \
8     sql \
9     network
10
11 maemo5:QT += maemo5
12
13 SOURCES +=  \
14     xdxfplugin.cpp \
15     TranslationXdxf.cpp \
16     XdxfDictDialog.cpp \
17     XdxfCachingDialog.cpp \
18     XdxfDialog.cpp \
19     XdxfDictDownloader.cpp \
20     XdxfDictSelectDialog.cpp \
21     XdxfDictDownloadProgressDialog.cpp
22
23
24 HEADERS += \
25     xdxfplugin.h \
26     TranslationXdxf.h \
27     ../../include/DictDialog.h \
28     XdxfDictDialog.h \
29     ../../include/translation.h \
30     ../../include/settings.h \
31     ../../include/CommonDictInterface.h \
32     XdxfCachingDialog.h \
33     XdxfDialog.h \
34     XdxfDictDownloader.h \
35     XdxfDictSelectDialog.h \
36     XdxfDictDownloadProgressDialog.h
37
38 RESOURCES += \
39     xdxf.qrc
40
41 TRANSLATIONS += pl_PL.ts \
42                 en_US.ts
43     
44 unix {
45   INSTALLS += dicts plugin-icon
46
47   dicts.path = $$PLUGINS_DIR
48   dicts.files += ../../../data/dicts/eng-us.xdxf
49   dicts.files += ../../../data/dicts/eng-thai.xdxf
50
51   plugin-icon.path = $$DATA_DIR
52   plugin-icon.files += xdxf.png
53 }
54
55 check.commands = echo 'No check here'
56 QMAKE_EXTRA_TARGETS += check