CMake: Allow Debug-only iOS builds
They are disabled for the qmake build due to QTBUG-71990, but the issue doesn't apply to the CMake build. Task-number: QTBUG-71990 Change-Id: I6c659e9dbbc947fd3c6241f9fab2ea306c98020b Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
1d49dad22c
commit
4f75c24b3e
@ -1071,11 +1071,13 @@ qt_configure_add_report_entry(
|
|||||||
MESSAGE "Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library."
|
MESSAGE "Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library."
|
||||||
CONDITION NOT QT_FEATURE_shared
|
CONDITION NOT QT_FEATURE_shared
|
||||||
)
|
)
|
||||||
qt_configure_add_report_entry(
|
# special case begin
|
||||||
TYPE ERROR
|
# qt_configure_add_report_entry(
|
||||||
MESSAGE "Debug build wihtout Release build is not currently supported on ios see QTBUG-71990. Use -debug-and-release."
|
# TYPE ERROR
|
||||||
CONDITION IOS AND QT_FEATURE_debug AND NOT QT_FEATURE_debug_and_release
|
# MESSAGE "Debug build wihtout Release build is not currently supported on ios see QTBUG-71990. Use -debug-and-release."
|
||||||
)
|
# CONDITION IOS AND QT_FEATURE_debug AND NOT QT_FEATURE_debug_and_release
|
||||||
|
# )
|
||||||
|
# special case end
|
||||||
qt_configure_add_report_entry(
|
qt_configure_add_report_entry(
|
||||||
TYPE WARNING
|
TYPE WARNING
|
||||||
MESSAGE "-debug-and-release is only supported on Darwin and Windows platforms. Qt can be built in release mode with separate debug information, so -debug-and-release is no longer necessary."
|
MESSAGE "-debug-and-release is only supported on Darwin and Windows platforms. Qt can be built in release mode with separate debug information, so -debug-and-release is no longer necessary."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user