Partially working googleplugin. Some minor hash, parser and model
[qtdict.git] / qtdict.pro
blob945f37ac4fde309cc511eadfe8b2d9fa95237ec8
1 TEMPLATE = app
2 QT = gui core network
3 CONFIG += qt \
4 debug \
5 warn_on \
6 thread \
7 plugin
8 DEFINES += QT_NO_DEBUG_OUTPUT
9 TARGET = qtdict
11 win32:CONFIG *= windows
13 DESTDIR = bin
14 OBJECTS_DIR = build
15 MOC_DIR = build
16 UI_DIR = build
17 RESOURCES = ui/qtdict.qrc
18 RC_FILE = ui/qtdict.rc
19 FORMS = ui/qtdict.ui \
20 ui/dicselect.ui \
21 ui/information.ui
22 HEADERS = src/utils.h \
23 src/settings.h \
24 src/qtdict.h \
25 src/downloader.h \
26 src/centralwidget.h \
27 src/datahash.h \
28 src/datamodel.h \
29 src/parser.h \
30 src/treenode.h \
31 src/dictionarypool.h \
32 src/dictionarytray.h \
33 src/selectionwidget.h \
34 src/plugins/dictionaryinterface.h
36 SOURCES = src/qtdict.cpp \
37 src/main.cpp \
38 src/downloader.cpp \
39 src/datahash.cpp \
40 src/datamodel.cpp \
41 src/parser.cpp \
42 src/treenode.cpp \
43 src/centralwidget.cpp \
44 src/settings.cpp \
45 src/dictionarypool.cpp \
46 src/dictionarytray.cpp \
47 src/selectionwidget.cpp \