blob: c8fb21f1c24cd7f6b341ba7e7b259458a64734c0 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
qtHaveModule(webkitwidgets):!contains(QT_CONFIG, static) {
BROWSER = qtwebkit
} else {
BROWSER = qtextbrowser
}
QT += widgets network help sql help
qtHaveModule(printsupport): QT += printsupport
PROJECTNAME = Assistant
include(../../shared/fontpanel/fontpanel.pri)
QMAKE_DOCS = $$PWD/doc/qtassistant.qdocconf
HEADERS += aboutdialog.h \
bookmarkdialog.h \
bookmarkfiltermodel.h \
bookmarkitem.h \
bookmarkmanager.h \
bookmarkmanagerwidget.h \
bookmarkmodel.h \
centralwidget.h \
cmdlineparser.h \
contentwindow.h \
findwidget.h \
filternamedialog.h \
helpenginewrapper.h \
helpbrowsersupport.h \
helpviewer.h \
helpviewer_p.h \
indexwindow.h \
mainwindow.h \
preferencesdialog.h \
qtdocinstaller.h \
remotecontrol.h \
searchwidget.h \
topicchooser.h \
tracer.h \
xbelsupport.h \
../shared/collectionconfiguration.h \
openpagesmodel.h \
globalactions.h \
openpageswidget.h \
openpagesmanager.h \
openpagesswitcher.h
SOURCES += aboutdialog.cpp \
bookmarkdialog.cpp \
bookmarkfiltermodel.cpp \
bookmarkitem.cpp \
bookmarkmanager.cpp \
bookmarkmanagerwidget.cpp \
bookmarkmodel.cpp \
centralwidget.cpp \
cmdlineparser.cpp \
contentwindow.cpp \
findwidget.cpp \
filternamedialog.cpp \
helpenginewrapper.cpp \
helpbrowsersupport.cpp \
helpviewer.cpp \
indexwindow.cpp \
main.cpp \
mainwindow.cpp \
preferencesdialog.cpp \
qtdocinstaller.cpp \
remotecontrol.cpp \
searchwidget.cpp \
topicchooser.cpp \
xbelsupport.cpp \
../shared/collectionconfiguration.cpp \
openpagesmodel.cpp \
globalactions.cpp \
openpageswidget.cpp \
openpagesmanager.cpp \
openpagesswitcher.cpp
equals(BROWSER, "qtwebkit") {
DEFINES += BROWSER_QTWEBKIT
QT += webkitwidgets
SOURCES += helpviewer_qwv.cpp
} else {
DEFINES += BROWSER_QTEXTBROWSER
SOURCES += helpviewer_qtb.cpp
}
win32 {
HEADERS += stdinlistener_win.h
SOURCES += stdinlistener_win.cpp
} else {
HEADERS += stdinlistener.h
SOURCES += stdinlistener.cpp
}
FORMS += bookmarkdialog.ui \
bookmarkmanagerwidget.ui \
bookmarkwidget.ui \
filternamedialog.ui \
preferencesdialog.ui \
topicchooser.ui
RESOURCES += assistant.qrc \
assistant_images.qrc
win32 {
LIBS += -lshell32
RC_FILE = assistant.rc
}
mac {
ICON = assistant.icns
TARGET = Assistant
QMAKE_INFO_PLIST = Info_mac.plist
}
contains(SQLPLUGINS, sqlite):QTPLUGIN += qsqlite
load(qt_app)
|