blob: 0d47aac80ffe9c2eb6f3c8b768dea070a85187d3 (
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
|
include($$QTWEBENGINE_OUT_ROOT/src/core/qtwebenginecore-config.pri) # workaround for QTBUG-68093
QT_FOR_CONFIG += webenginecore webenginecore-private
TEMPLATE=subdirs
SUBDIRS += \
minimal \
contentmanipulation \
cookiebrowser \
simplebrowser \
stylesheetbrowser \
videoplayer \
webui
qtConfig(webengine-geolocation): SUBDIRS += maps
qtConfig(webengine-webchannel): SUBDIRS += markdowneditor
qtConfig(webengine-printing-and-pdf) {
SUBDIRS += printme html2pdf
}
qtConfig(webengine-spellchecker):!qtConfig(webengine-native-spellchecker):!cross_compile {
SUBDIRS += spellchecker
} else {
message("Spellcheck example will not be built because it depends on usage of Hunspell dictionaries.")
}
|