Fix configure build due to use of qt_set01 in configure.cmake

The change "Enable X11 on other platforms than just Linux"
uses qt_set01 in a configure.cmake file but does not add it
to the stubs list in QtProcessConfigureArgs.cmake thus
breaking builds based on configure.
Add a defstub with qt_set01 to fix this.

Change-Id: Ia3e0ec61df5228f88f77f631968f6f96d567ec8e
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
Niclas Rosenvik 2021-03-16 20:03:00 +01:00
parent d6367aca86
commit 3c93f7dd4f

View File

@ -131,6 +131,7 @@ defstub(qt_feature_definition)
defstub(qt_find_package) defstub(qt_find_package)
defstub(set_package_properties) defstub(set_package_properties)
defstub(qt_qml_find_python) defstub(qt_qml_find_python)
defstub(qt_set01)
#################################################################################################### ####################################################################################################