CMake: Enable debug verbosity for cmake auto tests and EP examples
Sincebb10e2a0ddbb69, if Qt is configured as a non-developer-build, some of the CMake tests that include QtSetup would have their CMAKE_MESSAGE_LOG_LEVEL set to the reduced NOTICE value. Make sure that tests always have a DEBUG level, so that if they fail in the CI, we have more info on what goes wrong. For ExternalProject examples, it is conditional on whether Qt is configured with QT_INTERNAL_VERBOSE_EXAMPLES set to ON, otherwise calling the main ninja without -v will end up cluttering the output a non default log level. Amendse2a0ddbb69Pick-to: 6.2 6.3 Change-Id: Icd3b6e0fcc6c73e4b53b6c4a6d8354c96077a050 Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
parent
fe93a5f42d
commit
64d5708458
|
|
@ -1047,6 +1047,9 @@ function(qt_internal_add_example_external_project subdir)
|
|||
list(APPEND var_defs -D${var_with_type}=${varForGenex})
|
||||
endforeach()
|
||||
|
||||
if(QT_INTERNAL_VERBOSE_EXAMPLES)
|
||||
list(APPEND var_defs -DCMAKE_MESSAGE_LOG_LEVEL:STRING=DEBUG)
|
||||
endif()
|
||||
|
||||
set(deps "")
|
||||
list(REMOVE_DUPLICATES QT_EXAMPLE_DEPENDENCIES)
|
||||
|
|
|
|||
|
|
@ -63,6 +63,8 @@ function(_qt_internal_get_cmake_test_configure_options out_var)
|
|||
list(APPEND option_list "-DNO_DBUS=True")
|
||||
endif()
|
||||
|
||||
list(APPEND option_list "-DCMAKE_MESSAGE_LOG_LEVEL=DEBUG")
|
||||
|
||||
if(APPLE AND CMAKE_OSX_ARCHITECTURES)
|
||||
list(LENGTH CMAKE_OSX_ARCHITECTURES osx_arch_count)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue