blob: 26aa05b25bf8bca34e3b8bb3c7b0377c9661a1a1 (
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
64
65
66
67
68
69
70
71
72
|
TEMPLATE = lib
TARGET = Help
QT += network
greaterThan(QT_MAJOR_VERSION, 4) {
QT += printsupport help
!isEmpty(QT.webkitwidgets.name): QT += webkitwidgets webkit
else: DEFINES += QT_NO_WEBKIT
} else {
CONFIG += help
contains(QT_CONFIG, webkit): QT += webkit
}
INCLUDEPATH += $$PWD
include(../../qtcreatorplugin.pri)
include(help_dependencies.pri)
DEFINES += QT_CLUCENE_SUPPORT HELP_LIBRARY
HEADERS += \
centralwidget.h \
docsettingspage.h \
filtersettingspage.h \
generalsettingspage.h \
help_global.h \
helpconstants.h \
helpfindsupport.h \
helpindexfilter.h \
localhelpmanager.h \
helpmode.h \
helpplugin.h \
helpviewer.h \
helpviewer_p.h \
openpagesmanager.h \
openpagesmodel.h \
openpagesswitcher.h \
openpageswidget.h \
remotehelpfilter.h \
searchwidget.h \
xbelsupport.h \
externalhelpwindow.h
SOURCES += \
centralwidget.cpp \
docsettingspage.cpp \
filtersettingspage.cpp \
generalsettingspage.cpp \
helpfindsupport.cpp \
helpindexfilter.cpp \
localhelpmanager.cpp \
helpmode.cpp \
helpplugin.cpp \
helpviewer.cpp \
helpviewer_qtb.cpp \
helpviewer_qwv.cpp \
openpagesmanager.cpp \
openpagesmodel.cpp \
openpagesswitcher.cpp \
openpageswidget.cpp \
remotehelpfilter.cpp \
searchwidget.cpp \
xbelsupport.cpp \
externalhelpwindow.cpp
FORMS += docsettingspage.ui \
filtersettingspage.ui \
generalsettingspage.ui \
remotehelpfilter.ui
RESOURCES += help.qrc
include(../../shared/help/help.pri)
|