An error occurred while loading the file. Please try again.
-
Albert Astals Cid authored
It happens often that people convert a compare(foo.bar, 3) to a tryCompare(foo.bar, 3) and unfortunately that succeeds but doesn't do what they expected This makes tryCompare fail if no third argument is given Task-number: QTBUG-31427 Change-Id: I0c9618dae9aad4be55aa35c3e2dcf3535728beaa Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
3414cc6c
To find the state of this project's repository at the time of any of these versions, check out the tags.
src.pro 1.09 KiB
TEMPLATE = subdirs
isPlatformSupported() {
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
webengine_experimental_plugin.subdir = webengine/plugin/experimental
webengine_experimental_plugin.target = sub-webengine-experimental-plugin
webengine_experimental_plugin.depends = webengine
SUBDIRS += core \
process \
webengine \
webengine_plugin \
webengine_experimental_plugin
# FIXME: We probably want a bit more control over config options to tweak what to build/ship or not.
# Another example of where this could be necessary is to make it easy to build proprietery codecs support.
!contains(WEBENGINE_CONFIG, no_ui_delegates): SUBDIRS += webengine/ui
qtHaveModule(widgets) {
SUBDIRS += webenginewidgets
}
} else {
warning("QtWebEngine is not maintained for this platform/configuration and is therefore disabled.")
}