An error occurred while loading the file. Please try again.
-
Jerome Pasion authored
Change-Id: I1cd4dc70265f2425045328910be12a0cfaeb795c Reviewed-by:
Sergio Ahumada <sergio.ahumada@digia.com>
38d42bf3
To find the state of this project's repository at the time of any of these versions, check out the tags.
src.pro 1.72 KiB
load(platform)
include($$QTWEBENGINE_OUT_ROOT/src/buildtools/qtbuildtools-config.pri)
include($$QTWEBENGINE_OUT_ROOT/src/core/qtwebenginecore-config.pri)
include($$QTWEBENGINE_OUT_ROOT/src/webengine/qtwebengine-config.pri)
include($$QTWEBENGINE_OUT_ROOT/src/webenginewidgets/qtwebenginewidgets-config.pri)
QT_FOR_CONFIG += buildtools-private webenginecore webenginecore-private webengine-private \
webenginewidgets-private
TEMPLATE = subdirs
isWebEngineCoreBuild(){
qtConfig(build-qtwebengine-core) {
core.depends = buildtools
process.depends = core
webengine.depends = core
webenginewidgets.depends = core webengine
webengine_plugin.subdir = webengine/plugin
webengine_plugin.target = sub-webengine-plugin
webengine_plugin.depends = webengine
SUBDIRS += buildtools core process
qtConfig(webengine-spellchecker):!qtConfig(webengine-native-spellchecker):!cross_compile {
SUBDIRS += qwebengine_convert_dict
qwebengine_convert_dict.subdir = tools/qwebengine_convert_dict
qwebengine_convert_dict.depends = core
}
qtConfig(webengine-qml) {
SUBDIRS += webengine
}
qtConfig(webengine-widgets) {
SUBDIRS += plugins webenginewidgets
plugins.depends = webenginewidgets
}
}
} else {
!isEmpty(skipBuildReason):!build_pass {
log(QtWebEngine will not be built. $${skipBuildReason} $${EOL})
errorbuild.commands = @echo QtWebEngine will not be built. $${skipBuildReason}
errorbuild.CONFIG = phony
QMAKE_EXTRA_TARGETS += errorbuild
first.depends += errorbuild
QMAKE_EXTRA_TARGETS += first
}
}