blob: 706675e9fb494340f6c419a775d9a6f95c54a8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
TEMPLATE = lib
TARGET = Help
QT += network
include(../../qtcreatorplugin.pri)
include(help_dependencies.pri)
CONFIG += help
DEFINES += QT_CLUCENE_SUPPORT HELP_LIBRARY
HEADERS += \
centralwidget.h \
docsettingspage.h \
filtersettingspage.h \
generalsettingspage.h \
help_global.h \
helpconstants.h \
helpfindsupport.h \
helpindexfilter.h \
helpmanager.h \
helpmode.h \
helpplugin.h \
helpviewer.h \
helpviewer_p.h \
openpagesmanager.h \
openpagesmodel.h \
openpagesswitcher.h \
openpageswidget.h \
searchwidget.h \
xbelsupport.h
SOURCES += \
centralwidget.cpp \
docsettingspage.cpp \
filtersettingspage.cpp \
generalsettingspage.cpp \
helpfindsupport.cpp \
helpindexfilter.cpp \
helpmanager.cpp \
helpmode.cpp \
helpplugin.cpp \
helpviewer.cpp \
helpviewer_qtb.cpp \
helpviewer_qwv.cpp \
openpagesmanager.cpp \
openpagesmodel.cpp \
openpagesswitcher.cpp \
openpageswidget.cpp \
searchwidget.cpp \
xbelsupport.cpp
FORMS += docsettingspage.ui \
filtersettingspage.ui \
generalsettingspage.ui
RESOURCES += help.qrc
include(../../shared/help/help.pri)
contains(QT_CONFIG, webkit) {
QT += webkit
}
OTHER_FILES += Help.pluginspec
|