Building QT 6.2.2 for Windows and Android

I downloaded QT 6.2.2, verified its checksum:

certutil -hashfile qt-everywhere-src-6.2.2.zip MD5

Building for Windows with MSVC2019

Configured QT for building in the system Command Prompt (but not in MSVC Developer Command Prompt) as follows:

CALL "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
  
set "CMAKE_ROOT=E:\PFiles\cmake-3.21.3-windows-x86_64\bin"
set "NINJA_ROOT=E:\PFiles\ninja-win"
set "PERL_ROOT=E:\PFiles\Strawberry\perl\bin"
   
set PATH=%CMAKE_ROOT%;%PATH%
set PATH=%NINJA_ROOT%;%PATH%
set PATH=%PERL_ROOT%;%PATH%
set PATH=E:\PFiles\Python35;%PATH%
     
rem Check if the tools are in PATH
where perl.exe
where python.exe
where cmake.exe
where ninja.exe
 
set "MY_INSTALL_PATH=E:\Qt\Qt6.2.2\windows"
set CL=/MP
 
configure.bat -prefix %MY_INSTALL_PATH% -DQT_NO_EXCEPTIONS=1 -debug-and-release -force-debug-info -platform win32-msvc -opensource -confirm-license ^
-opengl es2 -I "C:\Program Files\OpenSSL\include" -L "C:\Program Files\OpenSSL\lib"

It printed the following:

+ cd qtbase
+ E:\repos\qt-everywhere-src-6.2.2\qtbase\configure.bat -top-level -prefix E:\Qt\Qt6.2.2\windows -DQT_NO_EXCEPTIONS=1 -debug-and-release -force-debug-info -platform win32-msvc -opensource -confirm-license -opengl es2 -I "C:\Program Files\OpenSSL\include" -L "C:\Program Files\OpenSSL\lib"
'E:/PFiles/cmake-3.21.3-windows-x86_64/bin/cmake.exe' '-DCMAKE_INSTALL_PREFIX=E://Qt//Qt6.2.2//windows' '-DQT_QMAKE_TARGET_MKSPEC=win32-msvc' '-DCMAKE_C_COMPILER=cl' '-DCMAKE_CXX_COMPILER=cl' '-DCMAKE_CONFIGURATION_TYPES=RelWithDebInfo;Debug' '-DQT_EXTRA_DEFINES=QT_NO_EXCEPTIONS=1' '-DQT_EXTRA_INCLUDEPATHS=C:\\Program Files\\OpenSSL\\include' '-DQT_EXTRA_LIBDIRS=C:\\Program Files\\OpenSSL\\lib' '-DINPUT_opengl=es2' '-G' 'Ninja Multi-Config' 'E:/repos/qt-everywhere-src-6.2.2'
-- The CXX compiler identification is MSVC 19.29.30137.0
-- The C compiler identification is MSVC 19.29.30137.0
-- The ASM compiler identification is MSVC
-- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
Checking dependencies of 'qtbase'
Checking dependencies of 'qtshadertools'
Checking dependencies of 'qtsvg'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qt3d'
Checking dependencies of 'qt5compat'
Checking dependencies of 'qtactiveqt'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qtcharts'
Checking dependencies of 'qtcoap'
Checking dependencies of 'qtconnectivity'
Checking dependencies of 'qtdatavis3d'
Checking dependencies of 'qttools'
Checking dependencies of 'qtdoc'
Checking dependencies of 'qtlottie'
Checking dependencies of 'qtmqtt'
Checking dependencies of 'qtnetworkauth'
Checking dependencies of 'qtopcua'
Checking dependencies of 'qtserialport'
Checking dependencies of 'qtpositioning'
Checking dependencies of 'qtquicktimeline'
Checking dependencies of 'qtquick3d'
Checking dependencies of 'qtremoteobjects'
Checking dependencies of 'qtscxml'
Checking dependencies of 'qtsensors'
Checking dependencies of 'qtserialbus'
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtvirtualkeyboard'
Checking dependencies of 'qtwayland'
Checking dependencies of 'qtwebsockets'
Checking dependencies of 'qtwebchannel'
Checking dependencies of 'qtwebengine'
Checking dependencies of 'qtwebview'
Configuring 'qtbase'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Check for feature set changes
-- Building architecture extraction project with the following CMake arguments:
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=E:/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms
-- Extracting architecture info from E:/repos/qt-everywhere-src-6.2.2/qtbase/config.tests/arch/RelWithDebInfo/architecture_test.exe.
-- Performing Test HAVE_LD_VERSION_SCRIPT
-- Performing Test HAVE_LD_VERSION_SCRIPT - Failed
-- Performing Test HAVE_WIN10_WIN32_WINNT
-- Performing Test HAVE_WIN10_WIN32_WINNT - Success
-- CMAKE_VERSION: "3.21.3"
-- CMAKE_HOST_SYSTEM: "Windows-10.0.19043"
-- CMAKE_HOST_SYSTEM_NAME: "Windows"
-- CMAKE_HOST_SYSTEM_VERSION: "10.0.19043"
-- CMAKE_HOST_SYSTEM_PROCESSOR: "AMD64"
-- CMAKE_SYSTEM: "Windows"
-- CMAKE_SYSTEM_NAME: "Windows"
-- CMAKE_SYSTEM_VERSION: "10.0.19043"
-- CMAKE_SYSTEM_PROCESSOR: "AMD64"
-- CMAKE_CROSSCOMPILING: "FALSE"
-- CMAKE_C_COMPILER: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe" (19.29.30137.0)
-- CMAKE_CXX_COMPILER: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe" (19.29.30137.0)
-- MSVC_VERSION: "1929"
-- MSVC_TOOLSET_VERSION: "142"
-- Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR) (Required is at least version "1.0.8")
-- Could NOT find WrapZLIB (missing: WrapZLIB_FOUND) (Required is at least version "1.0.8")
-- Could NOT find ZSTD: Found unsuitable version "", but required is at least "1.3" (found ZSTD_LIBRARY-NOTFOUND)
-- Could NOT find WrapDBus1 (missing: DBus1_LIBRARY DBus1_INCLUDE_DIR WrapDBus1_FOUND) (Required is at least version "1.2")
-- Performing Test HAVE_cxx14
-- Performing Test HAVE_cxx14 - Success
-- Performing Test HAVE_cxx17
-- Performing Test HAVE_cxx17 - Success
-- Performing Test HAVE_cxx20
-- Performing Test HAVE_cxx20 - Success
-- Performing Test precompiled header support
-- Performing Test precompiled header support - Success
-- Performing Test TEST_use_bfd_linker
-- Performing Test TEST_use_bfd_linker - Failed
-- Performing Test TEST_use_gold_linker
-- Performing Test TEST_use_gold_linker - Failed
-- Performing Test TEST_use_lld_linker
-- Performing Test TEST_use_lld_linker - Failed
-- Performing Test TEST_optimize_debug
-- Performing Test TEST_optimize_debug - Success
-- Performing Test TEST_enable_new_dtags
-- Performing Test TEST_enable_new_dtags - Success
-- Performing Test TEST_gdb_index
-- Performing Test TEST_gdb_index - Success
-- Performing Test HAVE_reduce_relocations
-- Performing Test HAVE_reduce_relocations - Failed
-- Performing Test separate debug information support
-- Performing Test separate debug information support - Failed
-- Performing Test HAVE_signaling_nan
-- Performing Test HAVE_signaling_nan - Success
-- Performing SIMD Test SSE2 instructions
-- Performing SIMD Test SSE2 instructions - Success
-- Performing SIMD Test SSE3 instructions
-- Performing SIMD Test SSE3 instructions - Success
-- Performing SIMD Test SSSE3 instructions
-- Performing SIMD Test SSSE3 instructions - Success
-- Performing SIMD Test SSE4.1 instructions
-- Performing SIMD Test SSE4.1 instructions - Success
-- Performing SIMD Test SSE4.2 instructions
-- Performing SIMD Test SSE4.2 instructions - Success
-- Performing SIMD Test AES new instructions
-- Performing SIMD Test AES new instructions - Success
-- Performing SIMD Test F16C instructions
-- Performing SIMD Test F16C instructions - Success
-- Performing SIMD Test RDRAND instruction
-- Performing SIMD Test RDRAND instruction - Success
-- Performing SIMD Test RDSEED instruction
-- Performing SIMD Test RDSEED instruction - Success
-- Performing SIMD Test SHA new instructions
-- Performing SIMD Test SHA new instructions - Success
-- Performing SIMD Test AVX instructions
-- Performing SIMD Test AVX instructions - Success
-- Performing SIMD Test AVX2 instructions
-- Performing SIMD Test AVX2 instructions - Success
-- Performing SIMD Test AVX512 F instructions
-- Performing SIMD Test AVX512 F instructions - Success
-- Performing SIMD Test AVX512 ER instructions
-- Performing SIMD Test AVX512 ER instructions - Success
-- Performing SIMD Test AVX512 CD instructions
-- Performing SIMD Test AVX512 CD instructions - Success
-- Performing SIMD Test AVX512 PF instructions
-- Performing SIMD Test AVX512 PF instructions - Success
-- Performing SIMD Test AVX512 DQ instructions
-- Performing SIMD Test AVX512 DQ instructions - Success
-- Performing SIMD Test AVX512 BW instructions
-- Performing SIMD Test AVX512 BW instructions - Success
-- Performing SIMD Test AVX512 VL instructions
-- Performing SIMD Test AVX512 VL instructions - Success
-- Performing SIMD Test AVX512 IFMA instructions
-- Performing SIMD Test AVX512 IFMA instructions - Success
-- Performing SIMD Test AVX512 VBMI instructions
-- Performing SIMD Test AVX512 VBMI instructions - Success
-- Performing Test HAVE_posix_fallocate
-- Performing Test HAVE_posix_fallocate - Failed
-- Performing Test HAVE_alloca_stdlib_h
-- Performing Test HAVE_alloca_stdlib_h - Failed
-- Performing Test HAVE_alloca_h
-- Performing Test HAVE_alloca_h - Failed
-- Performing Test HAVE_alloca_malloc_h
-- Performing Test HAVE_alloca_malloc_h - Success
-- Performing Test HAVE_stack_protector
-- Performing Test HAVE_stack_protector - Success
-- Performing Test HAVE_intelcet
-- Performing Test HAVE_intelcet - Failed
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_INCLUDE_DIR)
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Performing Test HAVE_GETTIME
-- Performing Test HAVE_GETTIME - Failed
-- Could NOT find WrapRt (missing: WrapRt_FOUND)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_atomicfptr
-- Performing Test HAVE_atomicfptr - Success
-- Performing Test HAVE_cloexec
-- Performing Test HAVE_cloexec - Failed
-- Performing Test HAVE_cxx11_future
-- Performing Test HAVE_cxx11_future - Success
-- Performing Test HAVE_cxx11_random
-- Performing Test HAVE_cxx11_random - Success
-- Performing Test HAVE_cxx17_filesystem
-- Performing Test HAVE_cxx17_filesystem - Success
-- Performing Test HAVE_eventfd
-- Performing Test HAVE_eventfd - Failed
-- Performing Test HAVE_futimens
-- Performing Test HAVE_futimens - Failed
-- Performing Test HAVE_futimes
-- Performing Test HAVE_futimes - Failed
-- Performing Test HAVE_getauxval
-- Performing Test HAVE_getauxval - Failed
-- Performing Test HAVE_getentropy
-- Performing Test HAVE_getentropy - Failed
-- Performing Test HAVE_glibc
-- Performing Test HAVE_glibc - Failed
-- Performing Test HAVE_inotify
-- Performing Test HAVE_inotify - Failed
-- Performing Test HAVE_ipc_sysv
-- Performing Test HAVE_ipc_sysv - Failed
-- Performing Test HAVE_ipc_posix
-- Performing Test HAVE_ipc_posix - Failed
-- Performing Test HAVE_linkat
-- Performing Test HAVE_linkat - Failed
-- Performing Test HAVE_ppoll
-- Performing Test HAVE_ppoll - Failed
-- Performing Test HAVE_pollts
-- Performing Test HAVE_pollts - Failed
-- Performing Test HAVE_poll
-- Performing Test HAVE_poll - Failed
-- Performing Test HAVE_renameat2
-- Performing Test HAVE_renameat2 - Failed
-- Performing Test HAVE_statx
-- Performing Test HAVE_statx - Failed
-- Performing Test HAVE_syslog
-- Performing Test HAVE_syslog - Failed
-- Performing Test HAVE_xlocalescanprint
-- Performing Test HAVE_xlocalescanprint - Failed
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Found OpenSSL: C:/Program Files/OpenSSL/lib/libcrypto.lib (found version "1.1.1g")
-- Found WrapOpenSSLHeaders: C:/Program Files/OpenSSL/include (found version "1.1.1g")
-- Performing Test HAVE_openssl_headers
-- Performing Test HAVE_openssl_headers - Success
-- Found WrapOpenSSL: C:/Program Files/OpenSSL/lib/libcrypto.lib (found version "1.1.1g")
-- Performing Test HAVE_openssl
-- Performing Test HAVE_openssl - Success
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Performing Test HAVE_getifaddrs
-- Performing Test HAVE_getifaddrs - Failed
-- Performing Test HAVE_ifr_index
-- Performing Test HAVE_ifr_index - Failed
-- Performing Test HAVE_ipv6ifname
-- Performing Test HAVE_ipv6ifname - Failed
-- Performing Test HAVE_linux_netlink
-- Performing Test HAVE_linux_netlink - Failed
-- Performing Test HAVE_sctp
-- Performing Test HAVE_sctp - Failed
-- Performing Test HAVE_dtls
-- Performing Test HAVE_dtls - Success
-- Performing Test HAVE_ocsp
-- Performing Test HAVE_ocsp - Success
-- Performing Test HAVE_networklistmanager
-- Performing Test HAVE_networklistmanager - Success
-- FindLibdrm.cmake cannot find libdrm on Windows systems.
-- Performing Test HAVE_EGL
-- Performing Test HAVE_EGL - Failed
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Findgbm.cmake cannot find gbm on Windows systems.
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- FindLibinput.cmake cannot find libinput on Windows systems.
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Found OpenGL: opengl32
-- Found WrapOpenGL: TRUE
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Performing Test HAVE_GLESv2
-- Performing Test HAVE_GLESv2 - Failed
-- Could NOT find GLESv2 (missing: GLESv2_INCLUDE_DIR GLESv2_LIBRARY HAVE_GLESv2 HAVE_GLESv2)
-- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
-- Performing Test HAVE_evdev
-- Performing Test HAVE_evdev - Failed
-- Performing Test HAVE_integrityfb
-- Performing Test HAVE_integrityfb - Failed
-- Performing Test HAVE_linuxfb
-- Performing Test HAVE_linuxfb - Failed
-- Performing Test HAVE_directwrite
-- Performing Test HAVE_directwrite - Success
-- Performing Test HAVE_directwrite3
-- Performing Test HAVE_directwrite3 - Success
-- Performing Test HAVE_d2d1
-- Performing Test HAVE_d2d1 - Success
-- Performing Test HAVE_d2d1_1
-- Performing Test HAVE_d2d1_1 - Success
-- Tool 'Qt6::moc' will be built from source.
-- Tool 'Qt6::rcc' will be built from source.
-- Tool 'Qt6::tracegen' will be built from source.
-- Tool 'Qt6::cmake_automoc_parser' will be built from source.
-- Looking for pthread.h
-- Looking for pthread.h - not found
-- Found Threads: TRUE
-- Using Qt bundled PCRE2.
-- Found WrapPCRE2: TRUE
-- Using source syncqt found at: E:/repos/qt-everywhere-src-6.2.2/qtbase/libexec/syncqt.pl
-- Running syncqt for module: 'QtCore'
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_INCLUDE_DIR)
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Could NOT find WrapRt (missing: WrapRt_FOUND)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
CMake Warning at qtbase/src/corelib/CMakeLists.txt:1230 (message):
  xmlstarlet was not found.  freedesktop.org.xml will not be minified!


-- Running syncqt for module: 'QtZlib'
-- Running syncqt for module: 'QtConcurrent'
-- Running syncqt for module: 'QtSql'
-- Running syncqt for module: 'QtNetwork'
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Running syncqt for module: 'QtXml'
-- Tool 'Qt6::uic' will be built from source.
-- Tool 'Qt6::qdbuscpp2xml' will be built from source.
-- Tool 'Qt6::qdbusxml2cpp' will be built from source.
-- Tool 'Qt6::qlalr' will be built from source.
-- Tool 'Qt6::qvkgen' will be built from source.
-- Tool 'Qt6::qtpaths' will be built from source.
-- Tool 'Qt6::androiddeployqt' will be built from source.
-- Tool 'Qt6::androidtestrunner' will be built from source.
-- Running syncqt for module: 'QtDBus'
-- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
-- Using Qt bundled Harfbuzz.
-- Found WrapHarfbuzz: TRUE
-- Using Qt bundled PNG.
-- Found WrapPNG: TRUE
-- Using Qt bundled Freetype.
-- Found WrapFreetype: TRUE
-- Running syncqt for module: 'QtGui'
-- FindLibdrm.cmake cannot find libdrm on Windows systems.
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Findgbm.cmake cannot find gbm on Windows systems.
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- FindLibinput.cmake cannot find libinput on Windows systems.
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find GLESv2 (missing: GLESv2_INCLUDE_DIR GLESv2_LIBRARY HAVE_GLESv2 HAVE_GLESv2)
-- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
-- Running syncqt for module: 'QtOpenGL'
-- Running syncqt for module: 'QtWidgets'
-- Running syncqt for module: 'QtOpenGLWidgets'
-- Running syncqt for module: 'QtDeviceDiscoverySupport'
-- Running syncqt for module: 'QtFbSupport'
-- Running syncqt for module: 'QtTest'
-- Running syncqt for module: 'QtPrintSupport'
-- Could NOT find Cups (missing: CUPS_LIBRARIES CUPS_INCLUDE_DIR)
-- Could NOT find DB2 (missing: DB2_INCLUDE_DIR DB2_LIBRARY)
-- Could NOT find MySQL (missing: MySQL_LIBRARY MySQL_INCLUDE_DIR)
-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR)
-- Could NOT find Oracle (missing: Oracle_LIBRARY Oracle_INCLUDE_DIR)
-- Found ODBC: odbc32.lib
-- Could NOT find SQLite3 (missing: SQLite3_INCLUDE_DIR SQLite3_LIBRARY)
-- Could NOT find Interbase (missing: Interbase_LIBRARY Interbase_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Tool 'Qt6::qmake' will be built from source.
Configuring 'qtshadertools'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtShaderTools'
-- Tool 'Qt6::qsb' will be built from source.
Configuring 'qtsvg'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtSvg'
-- Running syncqt for module: 'QtSvgWidgets'
Configuring 'qtimageformats'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
-- Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
-- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
-- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
Configuring 'qtdeclarative'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Found PythonInterp: E:/PFiles/Python35/python.exe (found version "3.5.4")
-- Tool 'Qt6::qmltyperegistrar' will be built from source.
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Performing Test HAVE_pointer_32bit
-- Performing Test HAVE_pointer_32bit - Failed
-- Performing Test HAVE_pointer_64bit
-- Performing Test HAVE_pointer_64bit - Success
-- Performing Test HAVE_arm_thumb
-- Performing Test HAVE_arm_thumb - Failed
-- Performing Test HAVE_arm_fp
-- Performing Test HAVE_arm_fp - Success
-- Running syncqt for module: 'QtQml'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQmlModels'
-- Running syncqt for module: 'QtQmlCore'
-- Running syncqt for module: 'QtQmlWorkerScript'
-- Running syncqt for module: 'QtQmlLocalStorage'
-- Running syncqt for module: 'QtQmlXmlListModel'
-- Running syncqt for module: 'QtQuick'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQuickShapes'
-- Running syncqt for module: 'QtQuickLayouts'
-- Running syncqt for module: 'QtQuickTest'
-- Running syncqt for module: 'QtQuickTestUtils'
-- Running syncqt for module: 'QtQuickParticles'
-- Running syncqt for module: 'QtQuickWidgets'
-- Running syncqt for module: 'QtQuickTemplates2'
-- Running syncqt for module: 'QtQuickControls2Impl'
-- Running syncqt for module: 'QtQuickControls2'
-- Running syncqt for module: 'QtQuickDialogs2Utils'
-- Running syncqt for module: 'QtQuickDialogs2QuickImpl'
-- Running syncqt for module: 'QtQuickDialogs2'
-- Running syncqt for module: 'QtQuickControlsTestUtils'
-- Running syncqt for module: 'QtLabsSettings'
-- Running syncqt for module: 'QtLabsQmlModels'
-- Running syncqt for module: 'QtLabsFolderListModel'
-- Running syncqt for module: 'QtLabsAnimation'
-- Running syncqt for module: 'QtLabsWavefrontMesh'
-- Running syncqt for module: 'QtLabsSharedImage'
-- Running syncqt for module: 'QtPacketProtocol'
-- Running syncqt for module: 'QtQmlDom'
-- Running syncqt for module: 'QtQmlCompiler'
-- Tool 'Qt6::qmlcachegen' will be built from source.
-- Running syncqt for module: 'QtQmlDebug'
-- Tool 'Qt6::qmldom' will be built from source.
-- Tool 'Qt6::qmllint' will be built from source.
-- Tool 'Qt6::qmlimportscanner' will be built from source.
-- Tool 'Qt6::qmlformat' will be built from source.
-- Tool 'Qt6::qmlprofiler' will be built from source.
-- Tool 'Qt6::qmltime' will be built from source.
-- Tool 'Qt6::qmlplugindump' will be built from source.
-- Tool 'Qt6::qmltestrunner' will be built from source.
Configuring 'qt3d'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'Qt3DCore'
-- Could NOT find WrapQt3DAssimp (missing: WrapQt3DAssimp_FOUND) (Required is at least version "5")
-- Performing Test
-- Performing Test  - Failed
-- Running syncqt for module: 'Qt3DLogic'
-- Running syncqt for module: 'Qt3DInput'
-- Running syncqt for module: 'Qt3DRender'
-- Could NOT find Vulkan (missing: Vulkan_LIBRARY Vulkan_INCLUDE_DIR)
-- Running syncqt for module: 'Qt3DExtras'
-- Running syncqt for module: 'Qt3DAnimation'
-- Running syncqt for module: 'Qt3DQuick'
-- Running syncqt for module: 'Qt3DQuickRender'
-- Running syncqt for module: 'Qt3DQuickScene2D'
-- Running syncqt for module: 'Qt3DQuickExtras'
-- Running syncqt for module: 'Qt3DQuickInput'
-- Running syncqt for module: 'Qt3DQuickAnimation'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/render/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene3d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/extras/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene2d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/input/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/logic/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/animation/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Performing Test Autodesk FBX
-- Performing Test Autodesk FBX - Failed
Configuring 'qt5compat'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtCore5Compat'
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_INCLUDE_DIR)
-- Performing Test HAVE_ICONV
-- Performing Test HAVE_ICONV - Failed
-- Performing Test HAVE_ICONV_WITH_LIB
-- Performing Test HAVE_ICONV_WITH_LIB - Failed
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt5compat/src/imports/graphicaleffects5/CMakeLists.txt:25 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtactiveqt'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtAxBase'
-- Running syncqt for module: 'QtAxServer'
-- Running syncqt for module: 'QtAxContainer'
-- Running syncqt for module: 'ActiveQt'
-- Tool 'Qt6::idc' will be built from source.
-- Tool 'Qt6::dumpdoc' will be built from source.
-- Tool 'Qt6::dumpcpp' will be built from source.
Configuring 'qtmultimedia'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtMultimedia'
QtMultimedia: created deprecated header(s) { qtmultimediadefs.h }
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Could NOT find AVFoundation (missing: AVFoundation_LIBRARY)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find WrapPulseAudio (missing: PULSEAUDIO_LIBRARY PULSEAUDIO_INCLUDE_DIR WrapPulseAudio_FOUND)
-- Found WMF: C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/strmiids.lib
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Performing Test evr.h
-- Performing Test evr.h - Success
-- Performing Test Vivante GPU
-- Performing Test Vivante GPU - Failed
-- Performing Test Video for Linux
-- Performing Test Video for Linux - Failed
-- Performing Test wmsdk.h
-- Performing Test wmsdk.h - Success
-- Running syncqt for module: 'QtMultimediaQuick'
-- Running syncqt for module: 'QtMultimediaWidgets'
Configuring 'qtcharts'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtCharts'
-- Running syncqt for module: 'QtChartsQml'
Configuring 'qtcoap'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtCoap'
Configuring 'qtconnectivity'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtBluetooth'
-- Performing Test BlueZ Low Energy
-- Performing Test BlueZ Low Energy - Failed
-- Performing Test Linux Crypto API
-- Performing Test Linux Crypto API - Failed
-- Performing Test WinRT Bluetooth API
-- Performing Test WinRT Bluetooth API - Success
-- Running syncqt for module: 'QtNfc'
Configuring 'qtdatavis3d'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtDataVisualization'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtdatavis3d/src/datavisualizationqml2/CMakeLists.txt:26 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qttools'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Running syncqt for module: 'QtTools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Tool 'Qt6::lconvert' will be built from source.
-- Tool 'Qt6::lprodump' will be built from source.
-- Tool 'Qt6::lrelease' will be built from source.
-- Tool 'Qt6::lrelease-pro' will be built from source.
-- Tool 'Qt6::lupdate' will be built from source.
-- Tool 'Qt6::lupdate-pro' will be built from source.
-- Running syncqt for module: 'QtUiPlugin'
-- Running syncqt for module: 'QtUiTools'
-- Running syncqt for module: 'QtDesigner'
QtDesigner: WARNING: E:/repos/qt-everywhere-src-6.2.2/qttools/src/designer/src/lib/uilib/formbuilder.h includes abstractformbuilder.h when it should include QtDesigner/abstractformbuilder.h
QtDesigner: created deprecated header(s) { QDesignerCustomWidgetInterface, qdesignerexportwidget.h, QDesignerExportWidget, QDesignerCustomWidgetCollectionInterface, customwidget.h }
-- Running syncqt for module: 'QtDesignerComponents'
-- Running syncqt for module: 'QtHelp'
-- Tool 'Qt6::qhelpgenerator' will be built from source.
-- Tool 'Qt6::qtattributionsscanner' will be built from source.
-- Tool 'Qt6::windeployqt' will be built from source.
Configuring 'qtdoc'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
Configuring 'qtlottie'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtBodymovin'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtlottie/src/imports/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtmqtt'
-- Could NOT find Qt6WebSockets (missing: Qt6WebSockets_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebSockets".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebSockets/Qt6WebSocketsConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtmqtt/CMakeLists.txt:20 (find_package)


-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtMqtt'
Configuring 'qtnetworkauth'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtNetworkAuth'
Configuring 'qtopcua'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtOpcUa'
-- Performing Test HAVE_uacpp
-- Performing Test HAVE_uacpp - Failed
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but declarative_opcua sets PUBLIC_LIBRARIES to the following
  value:

      Qt::Core;Qt::Gui;Qt::OpcUa;Qt::Quick

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:220 (qt_internal_add_plugin)
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtserialport'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtSerialPort'
-- Performing Test HAVE_ntddmodm
-- Performing Test HAVE_ntddmodm - Success
Configuring 'qtpositioning'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtPositioning'
-- Performing Test WinRT geolocation
-- Performing Test WinRT geolocation - Success
-- Running syncqt for module: 'QtPositioningQuick'
Configuring 'qtquicktimeline'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtQuickTimeline'
Configuring 'qtquick3d'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtQuick3DUtils'
-- Running syncqt for module: 'QtQuick3DAssetImport'
-- Running syncqt for module: 'QtQuick3DRuntimeRender'
-- Running syncqt for module: 'QtQuick3D'
-- Running syncqt for module: 'QtQuick3DParticles'
-- Running syncqt for module: 'QtQuick3DAssetUtils'
QtQuick3DAssetUtils: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtquick3d/src/assetutils/qquick3druntimeloader_p.h does not have the "We mean it." warning
-- Could NOT find WrapQuick3DAssimp (missing: WrapQuick3DAssimp_FOUND) (Required is at least version "5")
-- Performing Test Assimp
-- Performing Test Assimp - Failed
-- Running syncqt for module: 'QtQuick3DHelpers'
-- Running syncqt for module: 'QtQuick3DIblBaker'
-- Tool 'Qt6::balsam' will be built from source.
-- Tool 'Qt6::balsamui' will be built from source.
-- Tool 'Qt6::meshdebug' will be built from source.
-- Tool 'Qt6::shadergen' will be built from source.
-- Tool 'Qt6::instancer' will be built from source.
Configuring 'qtremoteobjects'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtRepParser'
-- Running syncqt for module: 'QtRemoteObjects'
-- Running syncqt for module: 'QtRemoteObjectsQml'
-- Tool 'Qt6::repc' will be built from source.
Configuring 'qtscxml'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtScxml'
-- Running syncqt for module: 'QtStateMachine'
-- Running syncqt for module: 'QtStateMachineQml'
-- Running syncqt for module: 'QtScxmlQml'
-- Tool 'Qt6::qscxmlc' will be built from source.
Configuring 'qtsensors'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtSensors'
-- Performing Test WinRT sensors
-- Performing Test WinRT sensors - Success
-- Running syncqt for module: 'QtSensorsQuick'
Configuring 'qtserialbus'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtSerialBus'
QtSerialBus: created deprecated header(s) { qserialbusglobal.h }
-- Performing Test Socket CAN
-- Performing Test Socket CAN - Failed
-- Performing Test Socket CAN FD
-- Performing Test Socket CAN FD - Failed
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but SystecCanBusPlugin sets PUBLIC_LIBRARIES to the following
  value:

      Qt::Core;Qt::Network;Qt::SerialBus

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtserialbus/src/plugins/canbus/systeccan/CMakeLists.txt:5 (qt_internal_add_plugin)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but VectorCanBusPlugin sets PUBLIC_LIBRARIES to the following
  value:

      Qt::Core;Qt::Network;Qt::SerialBus

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtserialbus/src/plugins/canbus/vectorcan/CMakeLists.txt:5 (qt_internal_add_plugin)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Tool 'Qt6::canbusutil' will be built from source.
Configuring 'qttranslations'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
CMake Warning at qttranslations/translations/CMakeLists.txt:38 (message):
  Directory
  'E:/repos/qt-everywhere-src-6.2.2/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


CMake Warning at qttranslations/translations/CMakeLists.txt:45 (message):
  No source files located for qtlocation, skipping target creation
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


Configuring 'qtvirtualkeyboard'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- Could NOT find XCB_XCB (missing: XCB_XCB_LIBRARY XCB_XCB_INCLUDE_DIR) (found version "")
-- Could NOT find XCB_RENDER (missing: XCB_RENDER_LIBRARY XCB_RENDER_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_SHAPE (missing: XCB_SHAPE_LIBRARY XCB_SHAPE_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_XFIXES (missing: XCB_XFIXES_LIBRARY XCB_XFIXES_INCLUDE_DIR XCB_XCB_FOUND XCB_RENDER_FOUND XCB_SHAPE_FOUND) (found version "")
-- Could NOT find XCB (missing: XCB_LIBRARIES XFIXES)
-- Running syncqt for module: 'QtVirtualKeyboard'
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find CerenceHwrAlphabetic (missing: CERENCE_HWR_ALPHABETIC_INCLUDE_DIRS)
-- Could NOT find CerenceHwrCjk (missing: CERENCE_HWR_CJK_INCLUDE_DIRS)
-- Could NOT find CerenceXt9 (missing: CERENCE_XT9_INCLUDE_DIRS)
-- Could NOT find MyScript (missing: MyScript_ROOT_DIR MyScript_VOIM_INCLUDE_DIR MyScript_VOIM_BINARY MyScript_Ink_BINARY MyScript_Prediction_BINARY MyScript_Text_BINARY MyScript_Engine_BINARY MyScript_VOIM_LIBRARY)
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/import/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/settings/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/styles/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwayland'
Skipping the build as the condition "LINUX OR MACOS OR QNX" is not met.
Configuring 'qtwebsockets'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtWebSockets'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebchannel'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtWebChannel'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebchannel/src/imports/webchannel/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebengine'
-- Building for multiple configurations: RelWithDebInfo;Debug.
-- Main configuration is: RelWithDebInfo.
-- Found Ninja: E:/PFiles/ninja-win/ninja.exe (found suitable version "1.10.2", minimum required is "1.7.2")
-- Could NOT find Gn (missing: Gn_EXECUTABLE) (Required is exact version "6.2.2")
-- Could NOT find Python2 (missing: Python2_EXECUTABLE Interpreter) (Required is at least version "2.7.5")
    Reason given by package:
        Interpreter: Wrong major version for the interpreter "E:/PFiles/Python35/python.exe"

-- Could NOT find GPerf (missing: GPerf_EXECUTABLE)
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Could NOT find FLEX (missing: FLEX_EXECUTABLE)
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find Snappy (missing: SNAPPY_LIBRARY SNAPPY_INCLUDE_DIR)
-- Found Nodejs: C:/Program Files/nodejs/node.exe (found suitable version "12.0", minimum required is "10.19")
-- Performing Test HAVE_khr
-- Performing Test HAVE_khr - Failed
-- Performing Test HAVE_winversion
-- Performing Test HAVE_winversion - Success
-- Support check for QtWebEngine failed: Python2 version 2.7.5 or later is required.
-- Support check for QtPdf failed: Python2 version 2.7.5 or later is required.
Configuring 'qtwebview'
-- Could NOT find Qt6WebEngineCore (missing: Qt6WebEngineCore_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineCore".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineCore/Qt6WebEngineCoreConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)

-- Could NOT find Qt6WebEngineQuick (missing: Qt6WebEngineQuick_DIR)

CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineQuick".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineQuick/Qt6WebEngineQuickConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)
-- Building for multiple configurations: RelWithDebInfo;Debug.


-- Main configuration is: RelWithDebInfo.
-- Running syncqt for module: 'QtWebView'
-- Running syncqt for module: 'QtWebViewQuick'
QtWebViewQuick: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtwebview/src/quick/qtwebviewquickglobal_p.h does not have the "We mean it." warning
-- The following packages have been found:

 * QtBuildInternals
 * OpenSSL
 * OpenGL
 * WrapPCRE2
 * WrapHarfbuzz
 * WrapPNG
 * WrapOpenGL
 * ODBC
 * WrapFreetype
 * PythonInterp
 * WrapIconv
 * WMF
 * Qt6CorePrivate (required version >= 6.2.2)
 * Qt6QmlDevToolsPrivate (required version >= 6.2.2)
 * Qt6AxContainerTools (required version >= 6.2.2)
 * Qt6AxBasePrivate (required version >= 6.2.2)
 * Qt6AxContainer (required version >= 6.2.2)
 * Qt6Sql (required version >= 6.2.2)
 * Qt6QmlXmlListModel (required version >= 6.2.2)
 * WrapOpenSSL (required version >= 1.1)
 * Qt6Concurrent (required version >= 6.2.2)
 * Qt6ShaderToolsTools (required version >= 6.2.2)
 * Qt6ShaderTools (required version >= 6.2.2)
 * Qt6QuickTimeline (required version >= 6.2.2)
 * Qt6DBusTools (required version >= 6.2.2)
 * Qt6DBus (required version >= 6.2.2)
 * Qt6SerialPort (required version >= 6.2.2)
 * Qt6LinguistTools (required version >= 6.2.2)
 * Qt6Linguist (required version >= 6.2.2)
 * Qt6ZlibPrivate (required version >= 6.2.2)
 * Qt6Svg (required version >= 6.2.2)
 * Qt6WidgetsTools (required version >= 6.2.2)
 * Qt6Widgets (required version >= 6.2.2)
 * Qt6PrintSupport (required version >= 6.2.2)
 * Qt6WebChannel (required version >= 6.2.2)
 * Qt6Positioning (required version >= 6.2.2)
 * Qt6QmlPrivate (required version >= 6.2.2)
 * Qt6QuickTemplates2Private (required version >= 6.2.2)
 * Qt6QuickControls2 (required version >= 6.2.2)
 * Qt6Test (required version >= 6.2.2)
 * Qt6OpenGLPrivate (required version >= 6.2.2)
 * Qt6QuickWidgets (required version >= 6.2.2)
 * Qt6QuickPrivate (required version >= 6.2.2)
 * Qt6QuickTest (required version >= 6.2.2)
 * Qt6WebSockets (required version >= 6.2.2)
 * Qt6UiPlugin (required version >= 6.2.2)
 * Qt6Xml (required version >= 6.2.2)
 * Qt6OpenGLWidgets (required version >= 6.2.2)
 * Qt6Designer (required version >= 6.2.2)
 * Ninja (required version >= 1.7.2), Build tool, <https://ninja-build.org/>
 * Nodejs (required version >= 10.19), JavaScript runtime environment that runs on the V8 engine, <https://nodejs.org/>
 * Qt6BuildInternals (required version >= 6.2.2)
 * WrapAtomic
 * Qt6CoreTools (required version >= 6.2.2)
 * Qt6Core (required version >= 6.2.2)
 * Qt6GuiTools (required version >= 6.2.2)
 * Qt6Gui (required version >= 6.2.2)
 * Qt6QmlTools (required version >= 6.2.2)
 * WrapOpenSSLHeaders
 * Qt6Network (required version >= 6.2.2)
 * Qt6Qml (required version >= 6.2.2)
 * Qt6QmlModels (required version >= 6.2.2)
 * Threads
 * Qt6OpenGL (required version >= 6.2.2)
 * Qt6Quick (required version >= 6.2.2)
 * Qt6 (required version >= 6.2.2)

-- The following OPTIONAL packages have not been found:

 * WrapZLIB (required version >= 1.0.8)
 * zstd
 * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * double-conversion
 * WrapDoubleConversion
 * Libsystemd
 * Libb2
 * WrapRt
 * PCRE2 (required version >= 10.20)
 * WrapSystemPCRE2 (required version >= 10.20)
 * Slog2
 * unofficial-brotli
 * WrapBrotli
 * Libproxy
 * GSSAPI, Generic Security Services Application Program Interface
 * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
 * ATSPI2
 * DirectFB
 * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
 * Freetype (required version >= 2.2.0)
 * WrapSystemFreetype (required version >= 2.2.0)
 * Fontconfig
 * gbm, Mesa gbm library., <http://www.mesa3d.org>
 * harfbuzz (required version >= 2.6.0)
 * WrapSystemHarfbuzz (required version >= 2.6.0)
 * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
 * md4c
 * WrapSystemMd4c
 * ZLIB
 * PNG
 * WrapSystemPNG
 * Mtdev
 * GLESv2
 * Tslib
 * WrapVulkanHeaders
 * GTK3 (required version >= 3.6)
 * Cups
 * DB2, IBM DB2 client library, <https://www.ibm.com>
 * MySQL, MySQL client library, <https://www.mysql.com>
 * PostgreSQL
 * Oracle, Oracle client library, <https://www.oracle.com>
 * SQLite3
 * Interbase, Interbase client library, <https://www.embarcadero.com/products/interbase>
 * JPEG
 * Jasper
 * WrapJasper
 * TIFF
 * WebP
 * WrapWebP
 * Libmng
 * LTTngUST
 * Qt6Gamepad (required version >= 6.2.2)
 * Qt6Multimedia (required version >= 6.2.2)
 * WrapQt3DAssimp (required version >= 5)
 * Vulkan
 * ICU
 * ALSA
 * AVFoundation
 * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
 * GObject
 * GStreamer
 * PulseAudio
 * WrapPulseAudio
 * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
 * BlueZ
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * Uacpp, The Unified Automation C++ OPC UA SDK, <https://www.unified-automation.com/products/server-sdk/c-ua-server-sdk.html>
 * Libudev
 * Gypsy
 * Gconf
 * assimp (required version >= 5)
 * WrapQuick3DAssimp (required version >= 5)
 * XCB, X protocol C-language Binding, <http://xcb.freedesktop.org>
 * Hunspell
 * CerenceHwrAlphabetic
 * CerenceHwrCjk
 * CerenceXt9
 * MyScript
 * Gn (required version == 6.2.2), Meta-build system, <https://gn.googlesource.com/gn/>
 * Python2 (required version >= 2.7.5)
 * GPerf, Perfect hash function generator, <https://www.gnu.org/software/gperf/>
 * BISON
 * FLEX
 * Snappy
 * PkgConfig
 * Qt6QmlCompilerPlus
 * Qt6WebEngineCore (required version >= 6.2.2)
 * Qt6WebEngineQuick (required version >= 6.2.2)

Configure summary:

Building for: win32-msvc (x86_64, CPU features: sse sse2)
Compiler: msvc 19.29.30137.0
Build options:
  Mode ................................... debug and release (with debug info)
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. yes
  Using C standard ....................... C11
  Using C++ standard ..................... C++17
  Relocatable ............................ yes
  Using precompiled headers .............. yes
  Using LTCG ............................. no
  Target compiler supports:
    SSE .................................. SSE2 SSE3 SSSE3 SSE4.1 SSE4.2
    AVX .................................. AVX AVX2
    AVX512 ............................... F ER CD PF DQ BW VL IFMA VBMI
    Other x86 ............................ AES F16C RDRAND SHA
  Sanitizers:
    Addresses ............................ no
    Threads .............................. no
    Memory ............................... no
    Fuzzer (instrumentation only) ........ no
    Undefined ............................ no
  Build parts ............................ libs tools
  App store compliance ................... no
Qt modules and options:
  Qt Concurrent .......................... yes
  Qt D-Bus ............................... yes
  Qt D-Bus directly linked to libdbus .... no
  Qt Gui ................................. yes
  Qt Network ............................. yes
  Qt PrintSupport ........................ yes
  Qt Sql ................................. yes
  Qt Testlib ............................. yes
  Qt Widgets ............................. yes
  Qt Xml ................................. yes
Support enabled for:
  Using pkg-config ....................... no
  udev ................................... no
  Using system zlib ...................... no
  Zstandard support ...................... no
  Thread support ......................... yes
Common build options:
  Linker can resolve circular dependencies  yes
Qt Core:
  backtrace .............................. no
  DoubleConversion ....................... yes
    Using system DoubleConversion ........ no
  GLib ................................... no
  ICU .................................... no
  Using system libb2 ..................... no
  Built-in copy of the MIME database ..... yes
  Tracing backend ........................ <none>
  Logging backends:
    journald ............................. no
    syslog ............................... no
    slog2 ................................ no
  PCRE2 .................................. yes
    Using system PCRE2 ................... no
Qt Sql:
  SQL item models ........................ yes
Qt Network:
  getifaddrs() ........................... no
  IPv6 ifname ............................ no
  libproxy ............................... no
  Schannel ............................... yes
  OpenSSL ................................ yes
    Qt directly linked to OpenSSL ........ no
  OpenSSL 1.1 ............................ yes
  DTLS ................................... yes
  OCSP-stapling .......................... yes
  SCTP ................................... no
  Use system proxies ..................... yes
  GSSAPI ................................. no
  Brotli Decompression Support ........... no
Qt Gui:
  Accessibility .......................... yes
  FreeType ............................... yes
    Using system FreeType ................ no
  HarfBuzz ............................... yes
    Using system HarfBuzz ................ no
  Fontconfig ............................. no
  Image formats:
    GIF .................................. yes
    ICO .................................. yes
    JPEG ................................. yes
      Using system libjpeg ............... no
    PNG .................................. yes
      Using system libpng ................ no
  Text formats:
    HtmlParser ........................... yes
    CssParser ............................ yes
    OdfWriter ............................ yes
    MarkdownReader ....................... yes
      Using system libmd4c ............... no
    MarkdownWriter ....................... yes
  EGL .................................... no
  OpenVG ................................. no
  OpenGL:
    Desktop OpenGL ....................... no
    Dynamic OpenGL ....................... yes
    OpenGL ES 2.0 ........................ no
    OpenGL ES 3.0 ........................ no
    OpenGL ES 3.1 ........................ no
    OpenGL ES 3.2 ........................ no
  Vulkan ................................. no
  Session Management ..................... yes
Features used by QPA backends:
  evdev .................................. no
  libinput ............................... no
  INTEGRITY HID .......................... no
  mtdev .................................. no
  tslib .................................. no
  xkbcommon .............................. no
  X11 specific:
    XLib ................................. no
    XCB Xlib ............................. no
    EGL on X11 ........................... no
    xkbcommon-x11 ........................ no
    xcb-sm ............................... no
QPA backends:
  DirectFB ............................... no
  EGLFS .................................. no
  EGLFS details:
    EGLFS OpenWFD ........................ no
    EGLFS i.Mx6 .......................... no
    EGLFS i.Mx6 Wayland .................. no
    EGLFS RCAR ........................... no
    EGLFS EGLDevice ...................... no
    EGLFS GBM ............................ no
    EGLFS VSP2 ........................... no
    EGLFS Mali ........................... no
    EGLFS Raspberry Pi ................... no
    EGLFS X11 ............................ no
  LinuxFB ................................ no
  VNC .................................... no
  VK_KHR_display ......................... no
  QNX:
    lgmon ................................ no
    IMF .................................. no
  XCB:
    Using system-provided xcb-xinput ..... no
    GL integrations:
      GLX Plugin ......................... no
        XCB GLX .......................... no
      EGL-X11 Plugin ..................... no
  Windows:
    Direct 2D ............................ yes
    Direct 2D 1.1 ........................ yes
    DirectWrite .......................... yes
    DirectWrite 3 ........................ yes
Qt Widgets:
  GTK+ ................................... no
  Styles ................................. Fusion Windows WindowsVista
Qt Testlib:
  Tester for item models ................. yes
Qt PrintSupport:
  CUPS ................................... no
Qt Sql Drivers:
  DB2 (IBM) .............................. no
  InterBase .............................. no
  MySql .................................. no
  OCI (Oracle) ........................... no
  ODBC ................................... yes
  PostgreSQL ............................. no
  SQLite ................................. yes
    Using system provided SQLite ......... no
Core tools:
  qmake tool ............................. yes
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt QML:
  QML network support .................... yes
  QML debugging and profiling support .... yes
  QML just-in-time compiler .............. yes
  QML sequence object .................... yes
  QML XML http request ................... yes
  QML Locale ............................. yes
Qt QML Models:
  QML list model ......................... yes
  QML delegate model ..................... yes
Qt Quick:
  AnimatedImage item ..................... yes
  Canvas item ............................ yes
  Support for Qt Quick Designer .......... yes
  Flipable item .......................... yes
  GridView item .......................... yes
  ListView item .......................... yes
  TableView item ......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner items ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt 3D:
  Assimp ................................. yes
  System Assimp .......................... no
  Use SSE2 instructions .................. yes
  Use AVX2 instructions .................. no
  Aspects:
    Render aspect ........................ yes
    Input aspect ......................... yes
    Logic aspect ......................... yes
    Animation aspect ..................... yes
    Extras aspect ........................ yes
Qt 3D APIs:
  Vulkan ................................. no
Qt 3D Renderers:
  OpenGL Renderer ........................ yes
  RHI Renderer ........................... no
Qt3D Geometry Loaders:
  Autodesk FBX ........................... no
Qt 5 Compatibility Libraries:
  iconv .................................. no
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ no
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... no
  Windows Media Foundation ............... yes
Qt Charts Types:
  Area Chart ............................. yes
  Line Chart ............................. yes
  Spline Chart ........................... yes
  Scatter Chart .......................... yes
  Bar Chart .............................. yes
  Pie Chart .............................. yes
  Boxplot Chart .......................... yes
  Candlestick Chart ...................... yes
Qt Axis Types:
  DateTime Axis .......................... yes
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  Mac Deployment Tool .................... no
  pixeltool .............................. yes
  qdbus .................................. yes
  Qt Attributions Scanner ................ yes
  qtdiag ................................. yes
  qtplugininfo ........................... yes
  Windows deployment tool ................ yes
Qt Opcua:
  Open62541 .............................. yes
  Unified Automation C++ SDK ............. no
  Support for namespace 0 NodeId names ... yes
  Namespace 0 NodeIds generator .......... no
  Open62541 security support ............. yes
  Support for global discovery server .... yes
Serial Port:
  ntddmodm ............................... yes
QtQuick3D:
  Assimp ................................. yes
  System Assimp .......................... no
Qt Remote Objects:
  High Availability Manager (ham) ........ no
Qt Scxml:
  ECMAScript data model for QtScxml ...... yes
Qt Sensors:
  WinRT sensors backend .................. yes
Qt SerialBus:
  Socket CAN ............................. no
  Socket CAN FD .......................... no
  SerialPort Support ..................... yes
Qt Virtualkeyboard:
  Desktop integration .................... yes
  Built-in layouts ....................... yes
  Key navigation ......................... no
  Retro style as default ................. no
  Sensitive Debug ........................ no
  Cerence ................................ no
    Static Linking ....................... no
    Handwriting .......................... no
      Alphabetic ......................... no
      CJK ................................ no
    XT9 .................................. no
      XT9 Debug .......................... no
      XT9 9-key layouts .................. no
    Bundle resources ..................... no
      Handwriting ........................ no
      XT9 ................................ no
  Hunspell ............................... no
    Using Hunspell copy from 3rdparty/ ... no
  OpenWnn ................................ yes
  MyScript ............................... no
  Language support enabled for:
    Arabic ............................... yes
    Bulgarian ............................ yes
    Czech ................................ yes
    Danish ............................... yes
    German ............................... yes
    Greek ................................ yes
    English GB ........................... yes
    English US ........................... yes
    Spanish .............................. yes
    Spanish Mexico ....................... yes
    Estonian ............................. yes
    Farsi ................................ yes
    Finnish .............................. yes
    French Canada ........................ yes
    French France ........................ yes
    Hebrew ............................... yes
    Hindi ................................ yes
    Croatian ............................. yes
    Hungarian ............................ yes
    Indonesian ........................... yes
    Italian .............................. yes
    Japanese ............................. yes
    Korean ............................... yes
    Malay ................................ yes
    Norwegian ............................ yes
    Dutch ................................ yes
    Polish ............................... yes
    Portuguese Brazil .................... yes
    Portuguese Portugal .................. yes
    Romanian ............................. yes
    Russian .............................. yes
    Slovak ............................... yes
    Slovenian ............................ yes
    Albanian ............................. yes
    Serbian .............................. yes
    Swedish .............................. yes
    Thai ................................. yes
    Turkish .............................. yes
    Ukrainian ............................ yes
    Vietnamese ........................... yes
    Simplified Chinese ................... yes
    Traditional Chinese .................. yes
    HongKong Chinese ..................... no
  Traditional chinese input methods:
    Zhuyin ............................... yes
    Cangjie .............................. yes
WebEngine Repository Build Options:
  Build Ninja ............................ no
  Build Gn ............................... yes
  Jumbo Build ............................ yes
  Developer build ........................ no
  Build QtWebEngine Modules:
    Build QtWebEngineCore ................ no
    Build QtWebEngineWidgets ............. no
    Build QtWebEngineQuick ............... no
  Build QtPdf Modules:
    Build QtPdfWidgets ................... no
    Build QtPdfQuick ..................... no

Note: Hunspell disabled. Spelling correction will not be available.

WARNING: QDoc will not be compiled, probably because libclang could not be located. This means that you cannot build the Qt documentation.
Either set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
On Linux systems, you may be able to install libclang by installing the libclang-dev or libclang-devel package, depending on your distribution.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be availa-- Configuring done
ble. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
WARNING: QtWebEngine won't be built. Python2 version 2.7.5 or later is required.
WARNING: QtPdf won't be built. Python2 version 2.7.5 or later is required.

Qt is now configured for building. Just run 'cmake --build . --parallel'

Once everything is built, you must run 'ninja install'
Qt will be installed into 'E:/Qt/Qt6.2.2/windows'

To configure and build other Qt modules, you can use the following convenience script:
        E:/Qt/Qt6.2.2/windows/bin/qt-configure-module.bat

If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory

-- Generating done
-- Build files have been written to: E:/repos/qt-everywhere-src-6.2.2

Built it and installed:

cmake --build . --parallel

And got internal compiler error:

[413/15124] Automatic MOC for target Network
AutoMoc: E:/repos/qt-everywhere-src-6.2.2/qtbase/src/network/access/qnetworkaccessdebugpipebackend_p.h(0:1): note: No relevant classes found. No output generated.
AutoMoc: E:/repos/qt-everywhere-src-6.2.2/qtbase/src/network/access/qnetworkaccessdebugpipebackend_p.h(0:1): note: No relevant classes found. No output generated.
[1939/15124] Building CXX object qtbase\src\gui\CMakeFiles\Gui.dir\Debug\kernel\qshortcutmap.cpp.obj
FAILED: qtbase/src/gui/CMakeFiles/Gui.dir/Debug/kernel/qshortcutmap.cpp.obj
C:\PROGRA~2\MICROS~3\2019\COMMUN~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DGui_EXPORTS -DMD4C_USE_UTF8 -DQT_ASCII_CAST_WARNINGS -DQT_BUILDING_QT -DQT_BUILD_GUI_LIB -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DEPRECATED_WARNINGS_SINCE=0x060000 -DQT_DISABLE_DEPRECATED_BEFORE=0x040800 -DQT_MOC_COMPAT -DQT_NO_CAST_TO_ASCII -DQT_NO_EXCEPTIONS -DQT_NO_EXCEPTIONS=1 -DQT_NO_FOREACH -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_USING_NAMESPACE -DQT_QPA_DEFAULT_PLATFORM_NAME=\"windows\" -DQT_USE_QSTRINGBUILDER -DUNICODE -DWIN32 -DWIN64 -D_CRT_SECURE_NO_WARNINGS -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_USE_MATH_DEFINES -D_WIN64 -D_WINDLL -DCMAKE_INTDIR=\"Debug\" -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\gui\Gui_autogen\include_Debug -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include\QtGui -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\gui -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\gui\..\3rdparty\VulkanMemoryAllocator -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include\QtGui\6.2.2 -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include\QtGui\6.2.2\QtGui -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\gui\..\3rdparty\md4c -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\gui\..\3rdparty\zlib\src -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include\QtCore -IE:\repos\qt-everywhere-src-6.2.2\qtbase\mkspecs\win32-msvc -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\corelib -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include\QtCore\6.2.2 -IE:\repos\qt-everywhere-src-6.2.2\qtbase\include\QtCore\6.2.2\QtCore -I"C:\\Program Files\\OpenSSL\\include" -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\3rdparty\libpng -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\3rdparty\harfbuzz-ng\include\harfbuzz -IE:\repos\qt-everywhere-src-6.2.2\qtbase\src\3rdparty\freetype\include /DWIN32 /D_WINDOWS /Zi     /RTC1 -MDd /W3 /wd4530 /wd4577 -Zc:__cplusplus -permissive- -utf-8 -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:externConstexpr -Zc:wchar_t -std:c++17 /YuE:/repos/qt-everywhere-src-6.2.2/qtbase/src/gui/CMakeFiles/Gui.dir/Debug/cmake_pch.hxx /FpE:/repos/qt-everywhere-src-6.2.2/qtbase/src/gui/CMakeFiles/Gui.dir/Debug/cmake_pch.cxx.pch /FIE:/repos/qt-everywhere-src-6.2.2/qtbase/src/gui/CMakeFiles/Gui.dir/Debug/cmake_pch.hxx /showIncludes /Foqtbase\src\gui\CMakeFiles\Gui.dir\Debug\kernel\qshortcutmap.cpp.obj /Fdqtbase\src\gui\CMakeFiles\Gui.dir\Debug\ /FS -c E:\repos\qt-everywhere-src-6.2.2\qtbase\src\gui\kernel\qshortcutmap.cpp
E:\repos\qt-everywhere-src-6.2.2\qtbase\src\corelib\tools\qlist.h(708) : fatal error C1001: Internal compiler error.
(compiler file 'd:\a01\_work\12\s\src\vctools\Compiler\Utc\src\p2\main.c', line 213)
 To work around this problem, try simplifying or changing the program near the locations listed above.
If possible please provide a repro here: https://developercommunity.visualstudio.com
Please choose the Technical Support command on the Visual C++
 Help menu, or open the Technical Support help file for more information

[1948/15124] Automatic MOC and UIC for target Widgets
ninja: build stopped: subcommand failed.

Bit it build with the second attempt and I installed it:

ninja install

The following DLLs were installed:

Qt6Bluetooth.dll
Qt6Bluetoothd.dll
Qt6Bodymovin.dll
Qt6Bodymovind.dll
Qt6Charts.dll
Qt6Chartsd.dll
Qt6ChartsQml.dll
Qt6ChartsQmld.dll
Qt6Coap.dll
Qt6Coapd.dll
Qt6Concurrent.dll
Qt6Concurrentd.dll
Qt6Core.dll
Qt6Core5Compat.dll
Qt6Core5Compatd.dll
Qt6Cored.dll
Qt6DataVisualization.dll
Qt6DataVisualizationd.dll
Qt6DBus.dll
Qt6DBusd.dll
Qt6Designer.dll
Qt6DesignerComponents.dll
Qt6DesignerComponentsd.dll
Qt6Designerd.dll
Qt6Gui.dll
Qt6Guid.dll
Qt6Help.dll
Qt6Helpd.dll
Qt6LabsAnimation.dll
Qt6LabsAnimationd.dll
Qt6LabsFolderListModel.dll
Qt6LabsFolderListModeld.dll
Qt6LabsQmlModels.dll
Qt6LabsQmlModelsd.dll
Qt6LabsSettings.dll
Qt6LabsSettingsd.dll
Qt6LabsSharedImage.dll
Qt6LabsSharedImaged.dll
Qt6LabsWavefrontMesh.dll
Qt6LabsWavefrontMeshd.dll
Qt6Mqtt.dll
Qt6Mqttd.dll
Qt6Multimedia.dll
Qt6Multimediad.dll
Qt6MultimediaQuick.dll
Qt6MultimediaQuickd.dll
Qt6MultimediaWidgets.dll
Qt6MultimediaWidgetsd.dll
Qt6Network.dll
Qt6NetworkAuth.dll
Qt6NetworkAuthd.dll
Qt6Networkd.dll
Qt6Nfc.dll
Qt6Nfcd.dll
Qt6OpcUa.dll
Qt6OpcUad.dll
Qt6OpenGL.dll
Qt6OpenGLd.dll
Qt6OpenGLWidgets.dll
Qt6OpenGLWidgetsd.dll
Qt6Positioning.dll
Qt6Positioningd.dll
Qt6PositioningQuick.dll
Qt6PositioningQuickd.dll
Qt6PrintSupport.dll
Qt6PrintSupportd.dll
Qt6Qml.dll
Qt6QmlCore.dll
Qt6QmlCored.dll
Qt6Qmld.dll
Qt6QmlLocalStorage.dll
Qt6QmlLocalStoraged.dll
Qt6QmlModels.dll
Qt6QmlModelsd.dll
Qt6QmlWorkerScript.dll
Qt6QmlWorkerScriptd.dll
Qt6QmlXmlListModel.dll
Qt6QmlXmlListModeld.dll
Qt6Quick.dll
Qt6Quick3D.dll
Qt6Quick3DAssetImport.dll
Qt6Quick3DAssetImportd.dll
Qt6Quick3DAssetUtils.dll
Qt6Quick3DAssetUtilsd.dll
Qt6Quick3Dd.dll
Qt6Quick3DEffects.dll
Qt6Quick3DEffectsd.dll
Qt6Quick3DHelpers.dll
Qt6Quick3DHelpersd.dll
Qt6Quick3DIblBaker.dll
Qt6Quick3DIblBakerd.dll
Qt6Quick3DParticles.dll
Qt6Quick3DParticlesd.dll
Qt6Quick3DRuntimeRender.dll
Qt6Quick3DRuntimeRenderd.dll
Qt6Quick3DUtils.dll
Qt6Quick3DUtilsd.dll
Qt6QuickControls2.dll
Qt6QuickControls2d.dll
Qt6QuickControls2Impl.dll
Qt6QuickControls2Impld.dll
Qt6Quickd.dll
Qt6QuickDialogs2.dll
Qt6QuickDialogs2d.dll
Qt6QuickDialogs2QuickImpl.dll
Qt6QuickDialogs2QuickImpld.dll
Qt6QuickDialogs2Utils.dll
Qt6QuickDialogs2Utilsd.dll
Qt6QuickLayouts.dll
Qt6QuickLayoutsd.dll
Qt6QuickParticles.dll
Qt6QuickParticlesd.dll
Qt6QuickShapes.dll
Qt6QuickShapesd.dll
Qt6QuickTemplates2.dll
Qt6QuickTemplates2d.dll
Qt6QuickTest.dll
Qt6QuickTestd.dll
Qt6QuickTimeline.dll
Qt6QuickTimelined.dll
Qt6QuickWidgets.dll
Qt6QuickWidgetsd.dll
Qt6RemoteObjects.dll
Qt6RemoteObjectsd.dll
Qt6RemoteObjectsQml.dll
Qt6RemoteObjectsQmld.dll
Qt6Scxml.dll
Qt6Scxmld.dll
Qt6ScxmlQml.dll
Qt6ScxmlQmld.dll
Qt6Sensors.dll
Qt6Sensorsd.dll
Qt6SensorsQuick.dll
Qt6SensorsQuickd.dll
Qt6SerialBus.dll
Qt6SerialBusd.dll
Qt6SerialPort.dll
Qt6SerialPortd.dll
Qt6ShaderTools.dll
Qt6ShaderToolsd.dll
Qt6Sql.dll
Qt6Sqld.dll
Qt6StateMachine.dll
Qt6StateMachined.dll
Qt6StateMachineQml.dll
Qt6StateMachineQmld.dll
Qt6Svg.dll
Qt6Svgd.dll
Qt6SvgWidgets.dll
Qt6SvgWidgetsd.dll
Qt6Test.dll
Qt6Testd.dll
Qt6UiTools.dll
Qt6UiToolsd.dll
Qt6VirtualKeyboard.dll
Qt6VirtualKeyboardd.dll
Qt6WebChannel.dll
Qt6WebChanneld.dll
Qt6WebSockets.dll
Qt6WebSocketsd.dll
Qt6WebView.dll
Qt6WebViewd.dll
Qt6WebViewQuick.dll
Qt6WebViewQuickd.dll
Qt6Widgets.dll
Qt6Widgetsd.dll
Qt6Xml.dll
Qt6Xmld.dll
Qt63DAnimation.dll
Qt63DAnimationd.dll
Qt63DCore.dll
Qt63DCored.dll
Qt63DExtras.dll
Qt63DExtrasd.dll
Qt63DInput.dll
Qt63DInputd.dll
Qt63DLogic.dll
Qt63DLogicd.dll
Qt63DQuick.dll
Qt63DQuickAnimation.dll
Qt63DQuickAnimationd.dll
Qt63DQuickd.dll
Qt63DQuickExtras.dll
Qt63DQuickExtrasd.dll
Qt63DQuickInput.dll
Qt63DQuickInputd.dll
Qt63DQuickRender.dll
Qt63DQuickRenderd.dll
Qt63DQuickScene2D.dll
Qt63DQuickScene2Dd.dll
Qt63DRender.dll
Qt63DRenderd.dll

Building for Android

Configured QT with JDK8 and CMake 3.21.3 as follows:

set "CMAKE_ROOT=E:\PFiles\cmake-3.21.3-windows-x86_64\bin"
set "NINJA_ROOT=E:\PFiles\ninja-win"
set "JDK_ROOT=C:\Program Files\Java\jdk1.8.0_301\bin"
set "MINGW_ROOT=E:\PFiles\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin"
set "PERL_ROOT=E:\PFiles\Strawberry\perl\bin"
  
set PATH=C:\WINDOWS\system32;C:\WINDOWS
set PATH=%CMAKE_ROOT%;%PATH%
set PATH=%NINJA_ROOT%;%PATH%
set PATH=%JDK_ROOT%;%PATH%
set PATH=%MINGW_ROOT%;%PATH%
set PATH=%PERL_ROOT%;%PATH%
set PATH=E:\PFiles\Python35;%PATH%
    
rem Check if the tools are in PATH
where gcc
where mingw32-make.exe
where perl.exe
where javac.exe
where python.exe
where cmake.exe
where ninja.exe
 
set "ANDROID_SDK_ROOT=C:\Users\D-Ef\AppData\Local\Android\Sdk"
set "ANDROID_NDK_PATH=C:\Users\D-Ef\AppData\Local\Android\Sdk\ndk\23.1.7779620"
set "ANDROID_NDK_PLATFORM=android-23"
rem See qtbase\mkspecs\android-clang\qmake.conf
rem see %ANDROID_SDK_ROOT%\build-tools folder
set "ANDROID_BUILD_TOOLS_REVISION=31.0.0"
  
set MY_INSTALL_PATH=E:\Qt\Qt6.2.2\android
set QT_HOST_PATH=E:\Qt\Qt6.2.2\windows
 
configure.bat -platform win32-msvc -xplatform android-clang -prefix %MY_INSTALL_PATH% -qt-host-path %QT_HOST_PATH% ^
  -android-sdk %ANDROID_SDK_ROOT% -android-ndk %ANDROID_NDK_PATH% -android-ndk-platform android-23 -android-abis x86_64 ^
  -DQT_NO_EXCEPTIONS=1 -release -force-debug-info -opensource -confirm-license

It printed the following:

+ cd qtbase
+ E:\repos\qt-everywhere-src-6.2.2\qtbase\configure.bat -top-level -platform win32-msvc -xplatform android-clang -prefix E:\Qt\Qt6.2.2\android -qt-host-path E:\Qt\Qt6.2.2\windows   -android-sdk C:\Users\D-Ef\AppData\Local\Android\Sdk -android-ndk C:\Users\D-Ef\AppData\Local\Android\Sdk\ndk\23.1.7779620 -android-ndk-platform android-23 -android-abis x86_64   -DQT_NO_EXCEPTIONS=1 -release -force-debug-info -opensource -confirm-license
'E:/PFiles/cmake-3.21.3-windows-x86_64/bin/cmake.exe' '-DQT_HOST_PATH=E://Qt//Qt6.2.2//windows' '-DCMAKE_INSTALL_PREFIX=E://Qt//Qt6.2.2//android' '-DQT_QMAKE_TARGET_MKSPEC=win32-msvc' '-DQT_QMAKE_TARGET_MKSPEC=android-clang' '-DCMAKE_C_COMPILER=cl' '-DCMAKE_CXX_COMPILER=cl' '-DANDROID_SDK_ROOT=C://Users//D-Ef//AppData//Local//Android//Sdk' '-DANDROID_NDK_ROOT=C://Users//D-Ef//AppData//Local//Android//Sdk//ndk//23.1.7779620' '-DANDROID_NATIVE_API_LEVEL=23' '-DANDROID_ABI=x86_64' '-DCMAKE_BUILD_TYPE=RelWithDebInfo' '-DQT_EXTRA_DEFINES=QT_NO_EXCEPTIONS=1' '-G' 'Ninja' 'E:/repos/qt-everywhere-src-6.2.2'
-- Android toolchain file within NDK detected: C://Users//D-Ef//AppData//Local//Android//Sdk//ndk//23.1.7779620/build/cmake/android.toolchain.cmake
-- Android build detected, checking configuration defaults...
-- ANDROID_PLATFORM not set. Defaulting to minimum supported version 16.
-- android-16 is not supported for x86_64. Using minimum supported LP64 version 21.
-- Android: Targeting API '21' with architecture 'x86_64', ABI 'x86_64', and processor 'x86_64'
-- Android: Selected unified Clang toolchain
-- The CXX compiler identification is Clang 12.0.8
-- The C compiler identification is Clang 12.0.8
-- The ASM compiler identification is Clang
-- Found assembler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
Checking dependencies of 'qtbase'
Checking dependencies of 'qtshadertools'
Checking dependencies of 'qtsvg'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qt3d'
Checking dependencies of 'qt5compat'
Checking dependencies of 'qtactiveqt'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qtcharts'
Checking dependencies of 'qtcoap'
Checking dependencies of 'qtconnectivity'
Checking dependencies of 'qtdatavis3d'
Checking dependencies of 'qttools'
Checking dependencies of 'qtdoc'
Checking dependencies of 'qtlottie'
Checking dependencies of 'qtmqtt'
Checking dependencies of 'qtnetworkauth'
Checking dependencies of 'qtopcua'
Checking dependencies of 'qtserialport'
Checking dependencies of 'qtpositioning'
Checking dependencies of 'qtquicktimeline'
Checking dependencies of 'qtquick3d'
Checking dependencies of 'qtremoteobjects'
Checking dependencies of 'qtscxml'
Checking dependencies of 'qtsensors'
Checking dependencies of 'qtserialbus'
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtvirtualkeyboard'
Checking dependencies of 'qtwayland'
Checking dependencies of 'qtwebsockets'
Checking dependencies of 'qtwebchannel'
Checking dependencies of 'qtwebengine'
Checking dependencies of 'qtwebview'
Configuring 'qtbase'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Java: C:/Program Files/Java/jdk1.8.0_301/bin/java.exe (found suitable version "1.8.0.301", minimum required is "1.8") found components: Development
-- Check for feature set changes
-- Building architecture extraction project with the following CMake arguments:
    -DANDROID_ABI=x86_64
    -DANDROID_ARM_MODE=thumb
    -DANDROID_ARM_NEON=TRUE
    -DANDROID_PLATFORM=android-21
    -DANDROID_STL=c++_shared
    -DANDROID_TOOLCHAIN=clang
    -DCMAKE_ANDROID_STL_TYPE=c++_shared
    -DCMAKE_OBJCOPY=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe
    -DCMAKE_TOOLCHAIN_FILE=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/build/cmake/android.toolchain.cmake
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=E:/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms
-- Extracting architecture info from E:/repos/qt-everywhere-src-6.2.2/qtbase/config.tests/arch/architecture_test.
-- Performing Test HAVE_LD_VERSION_SCRIPT
-- Performing Test HAVE_LD_VERSION_SCRIPT - Success
-- CMAKE_VERSION: "3.21.3"
-- CMAKE_HOST_SYSTEM: "Windows-10.0.19043"
-- CMAKE_HOST_SYSTEM_NAME: "Windows"
-- CMAKE_HOST_SYSTEM_VERSION: "10.0.19043"
-- CMAKE_HOST_SYSTEM_PROCESSOR: "AMD64"
-- CMAKE_SYSTEM: "Android"
-- CMAKE_SYSTEM_NAME: "Android"
-- CMAKE_SYSTEM_VERSION: "21"
-- CMAKE_SYSTEM_PROCESSOR: "x86_64"
-- CMAKE_CROSSCOMPILING: "TRUE"
-- CMAKE_C_COMPILER: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe" (12.0.8)
-- CMAKE_CXX_COMPILER: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe" (12.0.8)
-- ANDROID_TOOLCHAIN: "clang"
-- ANDROID_NDK: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620"
-- ANDROID_ABI: "x86_64"
-- ANDROID_PLATFORM: "android-21"
-- ANDROID_STL: "c++_shared"
-- ANDROID_PIE: ""
-- ANDROID_CPP_FEATURES: ""
-- ANDROID_ALLOW_UNDEFINED_SYMBOLS: ""
-- ANDROID_ARM_MODE: "thumb"
-- ANDROID_ARM_NEON: "TRUE"
-- ANDROID_DISABLE_FORMAT_STRING_CHECKS: ""
-- ANDROID_NATIVE_API_LEVEL: "21"
-- ANDROID_LLVM_TRIPLE: "x86_64-none-linux-android"
-- Found ZLIB: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android/21/libz.so (found suitable version "1.2.11", minimum required is "1.0.8")
-- Found WrapZLIB: TRUE (Required is at least version "1.0.8")
-- Could NOT find ZSTD: Found unsuitable version "", but required is at least "1.3" (found ZSTD_LIBRARY-NOTFOUND)
-- Could NOT find WrapDBus1 (missing: DBus1_LIBRARY DBus1_INCLUDE_DIR WrapDBus1_FOUND) (Required is at least version "1.2")
-- Performing Test HAVE_cxx14
-- Performing Test HAVE_cxx14 - Success
-- Performing Test HAVE_cxx17
-- Performing Test HAVE_cxx17 - Success
-- Performing Test HAVE_cxx20
-- Performing Test HAVE_cxx20 - Success
-- Performing Test precompiled header support
-- Performing Test precompiled header support - Success
-- Performing Test TEST_use_bfd_linker
-- Performing Test TEST_use_bfd_linker - Success
-- Performing Test TEST_use_gold_linker
-- Performing Test TEST_use_gold_linker - Success
-- Performing Test TEST_use_lld_linker
-- Performing Test TEST_use_lld_linker - Success
-- Performing Test TEST_optimize_debug
-- Performing Test TEST_optimize_debug - Success
-- Performing Test TEST_enable_new_dtags
-- Performing Test TEST_enable_new_dtags - Success
-- Performing Test TEST_gdb_index
-- Performing Test TEST_gdb_index - Success
-- Performing Test HAVE_reduce_relocations
-- Performing Test HAVE_reduce_relocations - Success
-- Performing Test separate debug information support
-- Performing Test separate debug information support - Success
-- Performing Test HAVE_signaling_nan
-- Performing Test HAVE_signaling_nan - Success
-- Performing SIMD Test SSE2 instructions
-- Performing SIMD Test SSE2 instructions - Success
-- Performing SIMD Test SSE3 instructions
-- Performing SIMD Test SSE3 instructions - Success
-- Performing SIMD Test SSSE3 instructions
-- Performing SIMD Test SSSE3 instructions - Success
-- Performing SIMD Test SSE4.1 instructions
-- Performing SIMD Test SSE4.1 instructions - Success
-- Performing SIMD Test SSE4.2 instructions
-- Performing SIMD Test SSE4.2 instructions - Success
-- Performing SIMD Test AES new instructions
-- Performing SIMD Test AES new instructions - Success
-- Performing SIMD Test F16C instructions
-- Performing SIMD Test F16C instructions - Success
-- Performing SIMD Test RDRAND instruction
-- Performing SIMD Test RDRAND instruction - Success
-- Performing SIMD Test RDSEED instruction
-- Performing SIMD Test RDSEED instruction - Success
-- Performing SIMD Test SHA new instructions
-- Performing SIMD Test SHA new instructions - Success
-- Performing SIMD Test AVX instructions
-- Performing SIMD Test AVX instructions - Success
-- Performing SIMD Test AVX2 instructions
-- Performing SIMD Test AVX2 instructions - Success
-- Performing SIMD Test AVX512 F instructions
-- Performing SIMD Test AVX512 F instructions - Success
-- Performing SIMD Test AVX512 ER instructions
-- Performing SIMD Test AVX512 ER instructions - Success
-- Performing SIMD Test AVX512 CD instructions
-- Performing SIMD Test AVX512 CD instructions - Success
-- Performing SIMD Test AVX512 PF instructions
-- Performing SIMD Test AVX512 PF instructions - Success
-- Performing SIMD Test AVX512 DQ instructions
-- Performing SIMD Test AVX512 DQ instructions - Success
-- Performing SIMD Test AVX512 BW instructions
-- Performing SIMD Test AVX512 BW instructions - Success
-- Performing SIMD Test AVX512 VL instructions
-- Performing SIMD Test AVX512 VL instructions - Success
-- Performing SIMD Test AVX512 IFMA instructions
-- Performing SIMD Test AVX512 IFMA instructions - Success
-- Performing SIMD Test AVX512 VBMI instructions
-- Performing SIMD Test AVX512 VBMI instructions - Success
-- Performing Test HAVE_posix_fallocate
-- Performing Test HAVE_posix_fallocate - Success
-- Performing Test HAVE_alloca_stdlib_h
-- Performing Test HAVE_alloca_stdlib_h - Success
-- Performing Test HAVE_alloca_h
-- Performing Test HAVE_alloca_h - Success
-- Performing Test HAVE_alloca_malloc_h
-- Performing Test HAVE_alloca_malloc_h - Failed
-- Performing Test HAVE_stack_protector
-- Performing Test HAVE_stack_protector - Success
-- Performing Test HAVE_intelcet
-- Performing Test HAVE_intelcet - Failed
-- Looking for backtrace
-- Looking for backtrace - not found
-- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "69.1")
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Performing Test HAVE_GETTIME
-- Performing Test HAVE_GETTIME - Success
-- Found WrapRt: TRUE
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_atomicfptr
-- Performing Test HAVE_atomicfptr - Success
-- Performing Test HAVE_clock_monotonic
-- Performing Test HAVE_clock_monotonic - Success
-- Performing Test HAVE_cloexec
-- Performing Test HAVE_cloexec - Success
-- Performing Test HAVE_cxx11_future
-- Performing Test HAVE_cxx11_future - Success
-- Performing Test HAVE_cxx11_random
-- Performing Test HAVE_cxx11_random - Success
-- Performing Test HAVE_cxx17_filesystem
-- Performing Test HAVE_cxx17_filesystem - Success
-- Performing Test HAVE_eventfd
-- Performing Test HAVE_eventfd - Success
-- Performing Test HAVE_futimens
-- Performing Test HAVE_futimens - Success
-- Performing Test HAVE_futimes
-- Performing Test HAVE_futimes - Failed
-- Performing Test HAVE_getauxval
-- Performing Test HAVE_getauxval - Success
-- Performing Test HAVE_getentropy
-- Performing Test HAVE_getentropy - Failed
-- Performing Test HAVE_glibc
-- Performing Test HAVE_glibc - Failed
-- Performing Test HAVE_inotify
-- Performing Test HAVE_inotify - Success
-- Performing Test HAVE_ipc_sysv
-- Performing Test HAVE_ipc_sysv - Failed
-- Performing Test HAVE_ipc_posix
-- Performing Test HAVE_ipc_posix - Failed
-- Performing Test HAVE_linkat
-- Performing Test HAVE_linkat - Success
-- Performing Test HAVE_ppoll
-- Performing Test HAVE_ppoll - Success
-- Performing Test HAVE_pollts
-- Performing Test HAVE_pollts - Failed
-- Performing Test HAVE_poll
-- Performing Test HAVE_poll - Success
-- Performing Test HAVE_renameat2
-- Performing Test HAVE_renameat2 - Failed
-- Performing Test HAVE_statx
-- Performing Test HAVE_statx - Failed
-- Performing Test HAVE_syslog
-- Performing Test HAVE_syslog - Success
-- Performing Test HAVE_xlocalescanprint
-- Performing Test HAVE_xlocalescanprint - Failed
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Performing Test HAVE_getifaddrs
-- Performing Test HAVE_getifaddrs - Failed
-- Performing Test HAVE_ifr_index
-- Performing Test HAVE_ifr_index - Failed
-- Performing Test HAVE_ipv6ifname
-- Performing Test HAVE_ipv6ifname - Failed
-- Performing Test HAVE_linux_netlink
-- Performing Test HAVE_linux_netlink - Success
-- Performing Test HAVE_sctp
-- Performing Test HAVE_sctp - Failed
-- Performing Test HAVE_networklistmanager
-- Performing Test HAVE_networklistmanager - Failed
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Performing Test HAVE_EGL
-- Performing Test HAVE_EGL - Success
-- Found EGL: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include (found version "1.5")
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Performing Test HAVE_GLESv2
-- Performing Test HAVE_GLESv2 - Success
-- Found GLESv2: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include
-- Found WrapVulkanHeaders: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include
-- Performing Test HAVE_egl_brcm
-- Performing Test HAVE_egl_brcm - Failed
-- Performing Test HAVE_egl_egldevice
-- Performing Test HAVE_egl_egldevice - Success
-- Performing Test HAVE_egl_mali
-- Performing Test HAVE_egl_mali - Failed
-- Performing Test HAVE_egl_mali_2
-- Performing Test HAVE_egl_mali_2 - Failed
-- Performing Test HAVE_egl_viv
-- Performing Test HAVE_egl_viv - Failed
-- Performing Test HAVE_egl_openwfd
-- Performing Test HAVE_egl_openwfd - Failed
-- Performing Test HAVE_egl_rcar
-- Performing Test HAVE_egl_rcar - Failed
-- Performing Test HAVE_evdev
-- Performing Test HAVE_evdev - Success
-- Performing Test HAVE_integrityfb
-- Performing Test HAVE_integrityfb - Failed
-- Performing Test HAVE_linuxfb
-- Performing Test HAVE_linuxfb - Failed
-- Performing Test HAVE_opengles3
-- Performing Test HAVE_opengles3 - Failed
-- Performing Test HAVE_opengles31
-- Performing Test HAVE_opengles31 - Failed
-- Performing Test HAVE_opengles32
-- Performing Test HAVE_opengles32 - Failed
-- Performing Test HAVE_directwrite
-- Performing Test HAVE_directwrite - Failed
-- Performing Test HAVE_directwrite3
-- Performing Test HAVE_directwrite3 - Failed
-- Performing Test HAVE_d2d1
-- Performing Test HAVE_d2d1 - Failed
-- Performing Test HAVE_d2d1_1
-- Performing Test HAVE_d2d1_1 - Failed
-- Searching for tool 'Qt6::moc' in package Qt6CoreTools.
-- Qt6::moc was found at E:/Qt/Qt6.2.2/windows/./bin/moc.exe using package Qt6CoreTools.
-- Tool 'Qt6::rcc' was found at E:/Qt/Qt6.2.2/windows/./bin/rcc.exe.
-- Tool 'Qt6::tracegen' was found at E:/Qt/Qt6.2.2/windows/./bin/tracegen.exe.
-- Tool 'Qt6::cmake_automoc_parser' was found at E:/Qt/Qt6.2.2/windows/./bin/cmake_automoc_parser.exe.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Using Qt bundled PCRE2.
-- Found WrapPCRE2: TRUE
-- Using source syncqt found at: E:/repos/qt-everywhere-src-6.2.2/qtbase/libexec/syncqt.pl
-- Running syncqt for module: 'QtCore'
-- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "69.1")
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_DASH_UNDEFINED_SYMBOLS
-- Performing Test HAVE_DASH_UNDEFINED_SYMBOLS - Success
-- Performing Test HAVE_DASH_DASH_NO_UNDEFINED
-- Performing Test HAVE_DASH_DASH_NO_UNDEFINED - Success
CMake Warning at qtbase/src/corelib/CMakeLists.txt:1230 (message):
  xmlstarlet was not found.  freedesktop.org.xml will not be minified!


-- Running syncqt for module: 'QtConcurrent'
-- Running syncqt for module: 'QtSql'
-- Running syncqt for module: 'QtNetwork'
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Running syncqt for module: 'QtXml'
-- Searching for tool 'Qt6::uic' in package Qt6WidgetsTools.
-- Qt6::uic was found at E:/Qt/Qt6.2.2/windows/./bin/uic.exe using package Qt6WidgetsTools.
-- Tool 'Qt6::qlalr' was found at E:/Qt/Qt6.2.2/windows/./bin/qlalr.exe.
-- Tool 'Qt6::qvkgen' was found at E:/Qt/Qt6.2.2/windows/./bin/qvkgen.exe.
-- Tool 'Qt6::qtpaths' was found at E:/Qt/Qt6.2.2/windows/bin/qtpaths.exe.
-- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
-- Using Qt bundled Harfbuzz.
-- Found WrapHarfbuzz: TRUE
-- Using Qt bundled PNG.
-- Found WrapPNG: TRUE
-- Using Qt bundled Freetype.
-- Found WrapFreetype: TRUE
-- Running syncqt for module: 'QtGui'
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Running syncqt for module: 'QtOpenGL'
-- Running syncqt for module: 'QtWidgets'
-- Running syncqt for module: 'QtOpenGLWidgets'
-- Running syncqt for module: 'QtDeviceDiscoverySupport'
-- Running syncqt for module: 'QtFbSupport'
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find XKB (missing: XKB_LIBRARY XKB_INCLUDE_DIR)
-- Running syncqt for module: 'QtInputSupport'
-- Running syncqt for module: 'QtTest'
-- Running syncqt for module: 'QtPrintSupport'
-- Could NOT find Cups (missing: CUPS_LIBRARIES CUPS_INCLUDE_DIR)
-- Could NOT find DB2 (missing: DB2_INCLUDE_DIR DB2_LIBRARY)
-- Could NOT find MySQL (missing: MySQL_LIBRARY MySQL_INCLUDE_DIR)
-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR)
-- Could NOT find Oracle (missing: Oracle_LIBRARY Oracle_INCLUDE_DIR)
-- Could NOT find ODBC (missing: ODBC_LIBRARY ODBC_INCLUDE_DIR)
-- Could NOT find SQLite3 (missing: SQLite3_INCLUDE_DIR SQLite3_LIBRARY)
-- Could NOT find Interbase (missing: Interbase_LIBRARY Interbase_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
Configuring 'qtshadertools'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtShaderTools'
-- Searching for tool 'Qt6::qsb' in package Qt6ShaderToolsTools.
-- Qt6::qsb was found at E:/Qt/Qt6.2.2/windows/bin/qsb.exe using package Qt6ShaderToolsTools.
Configuring 'qtsvg'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSvg'
-- Running syncqt for module: 'QtSvgWidgets'
Configuring 'qtimageformats'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
-- Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
-- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
-- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
Configuring 'qtdeclarative'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found PythonInterp: E:/PFiles/Python35/python.exe (found version "3.5.4")
-- Searching for tool 'Qt6::qmltyperegistrar' in package Qt6QmlTools.
-- Qt6::qmltyperegistrar was found at E:/Qt/Qt6.2.2/windows/./bin/qmltyperegistrar.exe using package Qt6QmlTools.
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Performing Test HAVE_pointer_32bit
-- Performing Test HAVE_pointer_32bit - Failed
-- Performing Test HAVE_pointer_64bit
-- Performing Test HAVE_pointer_64bit - Success
-- Performing Test HAVE_arm_thumb
-- Performing Test HAVE_arm_thumb - Failed
-- Performing Test HAVE_arm_fp
-- Performing Test HAVE_arm_fp - Success
-- Running syncqt for module: 'QtQml'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQmlModels'
-- Running syncqt for module: 'QtQmlCore'
-- Running syncqt for module: 'QtQmlWorkerScript'
-- Running syncqt for module: 'QtQmlLocalStorage'
-- Running syncqt for module: 'QtQmlXmlListModel'
-- Running syncqt for module: 'QtQuick'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQuickShapes'
-- Running syncqt for module: 'QtQuickLayouts'
-- Running syncqt for module: 'QtQuickTest'
-- Running syncqt for module: 'QtQuickTestUtils'
-- Running syncqt for module: 'QtQuickParticles'
-- Running syncqt for module: 'QtQuickWidgets'
-- Running syncqt for module: 'QtQuickTemplates2'
-- Running syncqt for module: 'QtQuickControls2Impl'
-- Running syncqt for module: 'QtQuickControls2'
-- Running syncqt for module: 'QtQuickDialogs2Utils'
-- Running syncqt for module: 'QtQuickDialogs2QuickImpl'
-- Running syncqt for module: 'QtQuickDialogs2'
-- Running syncqt for module: 'QtQuickControlsTestUtils'
-- Running syncqt for module: 'QtLabsSettings'
-- Running syncqt for module: 'QtLabsQmlModels'
-- Running syncqt for module: 'QtLabsFolderListModel'
-- Running syncqt for module: 'QtLabsAnimation'
-- Running syncqt for module: 'QtLabsWavefrontMesh'
-- Running syncqt for module: 'QtLabsSharedImage'
-- Running syncqt for module: 'QtPacketProtocol'
-- Running syncqt for module: 'QtQmlDom'
-- Running syncqt for module: 'QtQmlCompiler'
-- Tool 'Qt6::qmlcachegen' was found at E:/Qt/Qt6.2.2/windows/./bin/qmlcachegen.exe.
-- Running syncqt for module: 'QtQmlDebug'
-- Tool 'Qt6::qmldom' was found at E:/Qt/Qt6.2.2/windows/bin/qmldom.exe.
-- Tool 'Qt6::qmllint' was found at E:/Qt/Qt6.2.2/windows/bin/qmllint.exe.
-- Tool 'Qt6::qmlimportscanner' was found at E:/Qt/Qt6.2.2/windows/./bin/qmlimportscanner.exe.
-- Tool 'Qt6::qmlformat' was found at E:/Qt/Qt6.2.2/windows/bin/qmlformat.exe.
Configuring 'qt3d'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'Qt3DCore'
-- Could NOT find WrapQt3DAssimp (missing: WrapQt3DAssimp_FOUND) (Required is at least version "5")
-- Performing Test
-- Performing Test  - Failed
-- Running syncqt for module: 'Qt3DLogic'
-- Running syncqt for module: 'Qt3DInput'
-- Running syncqt for module: 'Qt3DRender'
-- Could NOT find Vulkan (missing: Vulkan_LIBRARY)
-- Running syncqt for module: 'Qt3DExtras'
-- Running syncqt for module: 'Qt3DAnimation'
-- Running syncqt for module: 'Qt3DQuick'
-- Running syncqt for module: 'Qt3DQuickRender'
-- Running syncqt for module: 'Qt3DQuickScene2D'
-- Running syncqt for module: 'Qt3DQuickExtras'
-- Running syncqt for module: 'Qt3DQuickInput'
-- Running syncqt for module: 'Qt3DQuickAnimation'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/render/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene3d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/extras/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene2d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/input/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/logic/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/animation/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Performing Test Autodesk FBX
-- Performing Test Autodesk FBX - Failed
Configuring 'qt5compat'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCore5Compat'
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "69.1")
-- Performing Test HAVE_ICONV
-- Performing Test HAVE_ICONV - Failed
-- Performing Test HAVE_ICONV_WITH_LIB
-- Performing Test HAVE_ICONV_WITH_LIB - Failed
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt5compat/src/imports/graphicaleffects5/CMakeLists.txt:25 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtactiveqt'
Condition "WIN32" is not met, enabling documentation build only.
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
Configuring 'qtmultimedia'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtMultimedia'
QtMultimedia: created deprecated header(s) { qtmultimediadefs.h }
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Could NOT find AVFoundation (missing: AVFoundation_LIBRARY)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find WrapPulseAudio (missing: PULSEAUDIO_LIBRARY PULSEAUDIO_INCLUDE_DIR WrapPulseAudio_FOUND)
-- Could NOT find WMF (missing: WMF_STRMIIDS_LIBRARY WMF_AMSTRMID_LIBRARY WMF_DMOGUIDS_LIBRARY WMF_UUID_LIBRARY WMF_MSDMO_LIBRARY WMF_OLE32_LIBRARY WMF_OLEAUT32_LIBRARY WMF_MF_LIBRARY WMF_MFUUID_LIBRARY WMF_MFPLAT_LIBRARY WMF_MFCORE_LIBRARY WMF_PROPSYS_LIBRARY)
-- Performing Test evr.h
-- Performing Test evr.h - Failed
-- Performing Test Vivante GPU
-- Performing Test Vivante GPU - Failed
-- Performing Test Video for Linux
-- Performing Test Video for Linux - Success
-- Performing Test wmsdk.h
-- Performing Test wmsdk.h - Failed
-- Performing Test HAVE_linux_dmabuf
-- Performing Test HAVE_linux_dmabuf - Failed
-- Running syncqt for module: 'QtMultimediaQuick'
-- Running syncqt for module: 'QtMultimediaWidgets'
Configuring 'qtcharts'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCharts'
-- Running syncqt for module: 'QtChartsQml'
Configuring 'qtcoap'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCoap'
Configuring 'qtconnectivity'
-- Could NOT find Qt6DBus (missing: Qt6DBus_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "DBus".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtconnectivity/CMakeLists.txt:19 (find_package)


-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtBluetooth'
-- Performing Test BlueZ Low Energy
-- Performing Test BlueZ Low Energy - Failed
-- Performing Test Linux Crypto API
-- Performing Test Linux Crypto API - Success
-- Performing Test WinRT Bluetooth API
-- Performing Test WinRT Bluetooth API - Failed
-- Running syncqt for module: 'QtNfc'
CMake Warning at qtbase/cmake/QtPlatformAndroid.cmake:28 (message):
  Could not locate Android SDK jar for api 'android-21', defaulting to
  android-30
Call Stack (most recent call first):
  qtconnectivity/src/android/bluetooth/CMakeLists.txt:1 (qt_get_android_sdk_jar_for_api)


CMake Warning at qtbase/cmake/QtPlatformAndroid.cmake:28 (message):
  Could not locate Android SDK jar for api 'android-18', defaulting to
  android-30
Call Stack (most recent call first):
  qtconnectivity/src/android/nfc/CMakeLists.txt:1 (qt_get_android_sdk_jar_for_api)


Configuring 'qtdatavis3d'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtDataVisualization'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtdatavis3d/src/datavisualizationqml2/CMakeLists.txt:26 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qttools'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Running syncqt for module: 'QtTools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Searching for tool 'Qt6::lconvert' in package Qt6LinguistTools.
-- Qt6::lconvert was found at E:/Qt/Qt6.2.2/windows/bin/lconvert.exe using package Qt6LinguistTools.
-- Tool 'Qt6::lprodump' was found at E:/Qt/Qt6.2.2/windows/./bin/lprodump.exe.
-- Tool 'Qt6::lrelease' was found at E:/Qt/Qt6.2.2/windows/bin/lrelease.exe.
-- Tool 'Qt6::lrelease-pro' was found at E:/Qt/Qt6.2.2/windows/./bin/lrelease-pro.exe.
-- Tool 'Qt6::lupdate' was found at E:/Qt/Qt6.2.2/windows/bin/lupdate.exe.
-- Tool 'Qt6::lupdate-pro' was found at E:/Qt/Qt6.2.2/windows/./bin/lupdate-pro.exe.
-- Running syncqt for module: 'QtUiPlugin'
-- Running syncqt for module: 'QtUiTools'
-- Running syncqt for module: 'QtDesigner'
QtDesigner: WARNING: E:/repos/qt-everywhere-src-6.2.2/qttools/src/designer/src/lib/uilib/formbuilder.h includes abstractformbuilder.h when it should include QtDesigner/abstractformbuilder.h
QtDesigner: created deprecated header(s) { QDesignerCustomWidgetInterface, QDesignerExportWidget, QDesignerCustomWidgetCollectionInterface, customwidget.h, qdesignerexportwidget.h }
-- Running syncqt for module: 'QtDesignerComponents'
-- Running syncqt for module: 'QtHelp'
-- Searching for tool 'Qt6::qhelpgenerator' in package Qt6ToolsTools.
-- Qt6::qhelpgenerator was found at E:/Qt/Qt6.2.2/windows/bin/qhelpgenerator.exe using package Qt6ToolsTools.
-- Tool 'Qt6::qtattributionsscanner' was found at E:/Qt/Qt6.2.2/windows/./bin/qtattributionsscanner.exe.
Configuring 'qtdoc'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
Configuring 'qtlottie'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtBodymovin'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtlottie/src/imports/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtmqtt'
-- Could NOT find Qt6WebSockets (missing: Qt6WebSockets_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebSockets".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebSockets/Qt6WebSocketsConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtmqtt/CMakeLists.txt:20 (find_package)


-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtMqtt'
Configuring 'qtnetworkauth'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtNetworkAuth'
Configuring 'qtopcua'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtOpcUa'
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Performing Test HAVE_uacpp
-- Performing Test HAVE_uacpp - Failed
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but declarative_opcua sets PUBLIC_LIBRARIES to the following
  value:

      Qt::Core;Qt::Gui;Qt::OpcUa;Qt::Quick

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:220 (qt_internal_add_plugin)
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtserialport'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSerialPort'
-- Performing Test HAVE_ntddmodm
-- Performing Test HAVE_ntddmodm - Failed
Configuring 'qtpositioning'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtPositioning'
-- Performing Test WinRT geolocation
-- Performing Test WinRT geolocation - Failed
-- Running syncqt for module: 'QtPositioningQuick'
Configuring 'qtquicktimeline'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtQuickTimeline'
Configuring 'qtquick3d'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtQuick3DUtils'
-- Running syncqt for module: 'QtQuick3DAssetImport'
-- Running syncqt for module: 'QtQuick3DRuntimeRender'
-- Running syncqt for module: 'QtQuick3D'
-- Running syncqt for module: 'QtQuick3DParticles'
-- Running syncqt for module: 'QtQuick3DAssetUtils'
QtQuick3DAssetUtils: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtquick3d/src/assetutils/qquick3druntimeloader_p.h does not have the "We mean it." warning
-- Running syncqt for module: 'QtQuick3DHelpers'
-- Running syncqt for module: 'QtQuick3DIblBaker'
-- Searching for tool 'Qt6::balsam' in package Qt6Quick3DTools.
-- Qt6::balsam was found at E:/Qt/Qt6.2.2/windows/bin/balsam.exe using package Qt6Quick3DTools.
-- Tool 'Qt6::balsamui' was found at E:/Qt/Qt6.2.2/windows/bin/balsamui.exe.
-- Tool 'Qt6::meshdebug' was found at E:/Qt/Qt6.2.2/windows/bin/meshdebug.exe.
-- Tool 'Qt6::shadergen' was found at E:/Qt/Qt6.2.2/windows/bin/shadergen.exe.
-- Tool 'Qt6::instancer' was found at E:/Qt/Qt6.2.2/windows/bin/instancer.exe.
Configuring 'qtremoteobjects'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtRepParser'
-- Running syncqt for module: 'QtRemoteObjects'
-- Running syncqt for module: 'QtRemoteObjectsQml'
-- Searching for tool 'Qt6::repc' in package Qt6RemoteObjectsTools.
-- Qt6::repc was found at E:/Qt/Qt6.2.2/windows/./bin/repc.exe using package Qt6RemoteObjectsTools.
Configuring 'qtscxml'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtScxml'
-- Running syncqt for module: 'QtStateMachine'
-- Running syncqt for module: 'QtStateMachineQml'
-- Running syncqt for module: 'QtScxmlQml'
-- Searching for tool 'Qt6::qscxmlc' in package Qt6ScxmlTools.
-- Qt6::qscxmlc was found at E:/Qt/Qt6.2.2/windows/bin/qscxmlc.exe using package Qt6ScxmlTools.
Configuring 'qtsensors'
-- Could NOT find Qt6DBus (missing: Qt6DBus_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "DBus".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtsensors/CMakeLists.txt:14 (find_package)


-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSensors'
-- Running syncqt for module: 'QtSensorsQuick'
Configuring 'qtserialbus'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSerialBus'
QtSerialBus: created deprecated header(s) { qserialbusglobal.h }
-- Performing Test Socket CAN
-- Performing Test Socket CAN - Success
-- Performing Test Socket CAN FD
-- Performing Test Socket CAN FD - Success
Configuring 'qttranslations'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
CMake Warning at qttranslations/translations/CMakeLists.txt:38 (message):
  Directory
  'E:/repos/qt-everywhere-src-6.2.2/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


CMake Warning at qttranslations/translations/CMakeLists.txt:45 (message):
  No source files located for qtlocation, skipping target creation
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


Configuring 'qtvirtualkeyboard'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- Could NOT find XCB_XCB (missing: XCB_XCB_LIBRARY XCB_XCB_INCLUDE_DIR) (found version "")
-- Could NOT find XCB_RENDER (missing: XCB_RENDER_LIBRARY XCB_RENDER_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_SHAPE (missing: XCB_SHAPE_LIBRARY XCB_SHAPE_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_XFIXES (missing: XCB_XFIXES_LIBRARY XCB_XFIXES_INCLUDE_DIR XCB_XCB_FOUND XCB_RENDER_FOUND XCB_SHAPE_FOUND) (found version "")
-- Could NOT find XCB (missing: XCB_LIBRARIES XFIXES)
-- Running syncqt for module: 'QtVirtualKeyboard'
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find CerenceHwrAlphabetic (missing: CERENCE_HWR_ALPHABETIC_INCLUDE_DIRS)
-- Could NOT find CerenceHwrCjk (missing: CERENCE_HWR_CJK_INCLUDE_DIRS)
-- Could NOT find CerenceXt9 (missing: CERENCE_XT9_INCLUDE_DIRS)
-- Could NOT find MyScript (missing: MyScript_ROOT_DIR MyScript_VOIM_INCLUDE_DIR MyScript_VOIM_BINARY MyScript_Ink_BINARY MyScript_Prediction_BINARY MyScript_Text_BINARY MyScript_Engine_BINARY)
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/import/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/settings/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/styles/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwayland'
Skipping the build as the condition "LINUX OR MACOS OR QNX" is not met.
Configuring 'qtwebsockets'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebSockets'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebchannel'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebChannel'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebchannel/src/imports/webchannel/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebengine'
-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Ninja: E:/PFiles/ninja-win/ninja.exe (found suitable version "1.10.2", minimum required is "1.7.2")
-- Could NOT find Gn (missing: Gn_EXECUTABLE) (Required is exact version "6.2.2")
-- Could NOT find Python2 (missing: Python2_EXECUTABLE Interpreter) (Required is at least version "2.7.5")
    Reason given by package:
        Interpreter: Wrong major version for the interpreter "E:/PFiles/Python35/python.exe"

-- Could NOT find GPerf (missing: GPerf_EXECUTABLE)
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Could NOT find FLEX (missing: FLEX_EXECUTABLE)
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find Snappy (missing: SNAPPY_LIBRARY SNAPPY_INCLUDE_DIR)
-- Could NOT find Nodejs: Found unsuitable version "", but required is at least "10.19" (found Nodejs_EXECUTABLE-NOTFOUND)
-- Performing Test HAVE_khr
-- Performing Test HAVE_khr - Success
-- Performing Test HAVE_winversion
-- Performing Test HAVE_winversion - Success
-- Support check for QtWebEngine failed: Build can be done only on Linux, Windows or macOS.
-- Support check for QtPdf failed: Build can be done only on Linux, Windows or macOS.
Configuring 'qtwebview'
-- Could NOT find Qt6WebEngineCore (missing: Qt6WebEngineCore_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineCore".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineCore/Qt6WebEngineCoreConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)
-- Could NOT find Qt6WebEngineQuick (missing: Qt6WebEngineQuick_DIR)


CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineQuick".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineQuick/Qt6WebEngineQuickConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)


-- Using Android SDK API android-30 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebView'
-- Running syncqt for module: 'QtWebViewQuick'
QtWebViewQuick: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtwebview/src/quick/qtwebviewquickglobal_p.h does not have the "We mean it." warning
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but QAndroidWebViewPlugin sets PUBLIC_LIBRARIES to the
  following value:

      Qt::Core;Qt::Gui;Qt::WebViewPrivate

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtwebview/src/plugins/android/CMakeLists.txt:5 (qt_internal_add_plugin)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The following packages have been found:

 * QtBuildInternals
 * WrapZLIB (required version >= 1.0.8)
 * WrapPCRE2
 * WrapRt
 * WrapHarfbuzz
 * WrapPNG
 * WrapFreetype
 * ZLIB
 * PythonInterp
 * WrapIconv
 * Qt6CorePrivate (required version >= 6.2.2)
 * Qt6QmlDevToolsPrivate (required version >= 6.2.2)
 * Qt6ToolsTools (required version >= 6.2.2)
 * Qt6Sql (required version >= 6.2.2)
 * Qt6QmlXmlListModel (required version >= 6.2.2)
 * Qt6Concurrent (required version >= 6.2.2)
 * Qt6ShaderToolsTools (required version >= 6.2.2)
 * Qt6ShaderTools (required version >= 6.2.2)
 * Qt6QuickTimeline (required version >= 6.2.2)
 * Qt6Quick3DTools (required version >= 6.2.2)
 * Qt6RemoteObjectsTools (required version >= 6.2.2)
 * Qt6ScxmlTools (required version >= 6.2.2)
 * Qt6SerialPort (required version >= 6.2.2)
 * Qt6LinguistTools (required version >= 6.2.2)
 * Qt6Linguist (required version >= 6.2.2)
 * Qt6Svg (required version >= 6.2.2)
 * Qt6WidgetsTools (required version >= 6.2.2)
 * Qt6Widgets (required version >= 6.2.2)
 * Qt6PrintSupport (required version >= 6.2.2)
 * Qt6WebChannel (required version >= 6.2.2)
 * Qt6Positioning (required version >= 6.2.2)
 * Qt6QmlPrivate (required version >= 6.2.2)
 * Qt6QuickTemplates2Private (required version >= 6.2.2)
 * Qt6QuickControls2 (required version >= 6.2.2)
 * Qt6Test (required version >= 6.2.2)
 * Qt6OpenGLPrivate (required version >= 6.2.2)
 * Qt6QuickWidgets (required version >= 6.2.2)
 * Qt6QuickPrivate (required version >= 6.2.2)
 * Qt6QuickTest (required version >= 6.2.2)
 * Qt6WebSockets (required version >= 6.2.2)
 * Qt6UiPlugin (required version >= 6.2.2)
 * Qt6Xml (required version >= 6.2.2)
 * Qt6OpenGLWidgets (required version >= 6.2.2)
 * Qt6Designer (required version >= 6.2.2)
 * Ninja (required version >= 1.7.2), Build tool, <https://ninja-build.org/>
 * Qt6BuildInternals (required version >= 6.2.2)
 * WrapAtomic
 * Qt6CoreTools (required version >= 6.2.2)
 * Qt6Core (required version >= 6.2.2)
 * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
 * GLESv2
 * Qt6Gui (required version >= 6.2.2)
 * Qt6QmlTools (required version >= 6.2.2)
 * Qt6Network (required version >= 6.2.2)
 * Qt6Qml (required version >= 6.2.2)
 * Qt6QmlModels (required version >= 6.2.2)
 * Threads
 * WrapVulkanHeaders
 * Qt6OpenGL (required version >= 6.2.2)
 * Qt6Quick (required version >= 6.2.2)
 * Qt6 (required version >= 6.2.2)
 * Qt6HostInfo
 * Java (required version >= 1.8)

-- The following OPTIONAL packages have not been found:

 * zstd
 * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Backtrace
 * WrapBacktrace
 * double-conversion
 * WrapDoubleConversion
 * Libsystemd
 * Libb2
 * PCRE2 (required version >= 10.20)
 * WrapSystemPCRE2 (required version >= 10.20)
 * Slog2
 * unofficial-brotli
 * WrapBrotli
 * Libproxy
 * GSSAPI, Generic Security Services Application Program Interface
 * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
 * ATSPI2
 * DirectFB
 * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
 * Freetype (required version >= 2.2.0)
 * WrapSystemFreetype (required version >= 2.2.0)
 * Fontconfig
 * gbm, Mesa gbm library., <http://www.mesa3d.org>
 * harfbuzz (required version >= 2.6.0)
 * WrapSystemHarfbuzz (required version >= 2.6.0)
 * md4c
 * WrapSystemMd4c
 * PNG
 * WrapSystemPNG
 * OpenGL
 * WrapOpenGL
 * GTK3 (required version >= 3.6)
 * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
 * XKB, XKB API common to servers and clients., <http://xkbcommon.org>
 * Tslib
 * Mtdev
 * Cups
 * DB2, IBM DB2 client library, <https://www.ibm.com>
 * MySQL, MySQL client library, <https://www.mysql.com>
 * PostgreSQL
 * Oracle, Oracle client library, <https://www.oracle.com>
 * ODBC
 * SQLite3
 * Interbase, Interbase client library, <https://www.embarcadero.com/products/interbase>
 * JPEG
 * Jasper
 * WrapJasper
 * TIFF
 * WebP
 * WrapWebP
 * Libmng
 * LTTngUST
 * Qt6Gamepad (required version >= 6.2.2)
 * Qt6Multimedia (required version >= 6.2.2)
 * assimp (required version >= 5)
 * WrapQt3DAssimp (required version >= 5)
 * Vulkan
 * ICU
 * ALSA
 * AVFoundation
 * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
 * GObject
 * GStreamer
 * PulseAudio
 * WrapPulseAudio
 * WMF
 * BlueZ
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * Uacpp, The Unified Automation C++ OPC UA SDK, <https://www.unified-automation.com/products/server-sdk/c-ua-server-sdk.html>
 * OpenSSL (required version >= 1.1)
 * WrapOpenSSLHeaders (required version >= 1.1)
 * WrapOpenSSL (required version >= 1.1)
 * Libudev
 * Gypsy
 * Gconf
 * Qt6DBus (required version >= 6.2.2)
 * XCB, X protocol C-language Binding, <http://xcb.freedesktop.org>
 * Hunspell
 * CerenceHwrAlphabetic
 * CerenceHwrCjk
 * CerenceXt9
 * MyScript
 * Gn (required version == 6.2.2), Meta-build system, <https://gn.googlesource.com/gn/>
 * Python2 (required version >= 2.7.5)
 * GPerf, Perfect hash function generator, <https://www.gnu.org/software/gperf/>
 * BISON
 * FLEX
 * Snappy
 * Nodejs (required version >= 10.19), JavaScript runtime environment that runs on the V8 engine, <https://nodejs.org/>
 * PkgConfig
 * Qt6QmlCompilerPlus
 * Qt6WebEngineCore (required version >= 6.2.2)
 * Qt6WebEngineQuick (required version >= 6.2.2)

Configure summary:

Building for: android-clang (x86_64, CPU features: cx16 mmx popcnt sse sse2 sse3 ssse3 sse4.1 sse4.2 sse4)
Compiler: clang 12.0.8
Build options:
  Mode ................................... release (with debug info)
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. yes
  Using C standard ....................... C11
  Using C++ standard ..................... C++17
  Using ccache ........................... no
  Relocatable ............................ yes
  Using precompiled headers .............. yes
  Using LTCG ............................. no
  Target compiler supports:
    SSE .................................. SSE2 SSE3 SSSE3 SSE4.1 SSE4.2
    AVX .................................. <none>
    AVX512 ............................... <none>
    Other x86 ............................ AES RDRAND SHA
    Intrinsics without compiler architecture option  yes
  Sanitizers:
    Addresses ............................ no
    Threads .............................. no
    Memory ............................... no
    Fuzzer (instrumentation only) ........ no
    Undefined ............................ no
  Build parts ............................ libs
  App store compliance ................... yes
Qt modules and options:
  Qt Concurrent .......................... yes
  Qt D-Bus ............................... no
  Qt D-Bus directly linked to libdbus .... no
  Qt Gui ................................. yes
  Qt Network ............................. yes
  Qt PrintSupport ........................ yes
  Qt Sql ................................. yes
  Qt Testlib ............................. yes
  Qt Widgets ............................. yes
  Qt Xml ................................. yes
Support enabled for:
  Using pkg-config ....................... no
  udev ................................... no
  Using system zlib ...................... yes
  Zstandard support ...................... no
  Thread support ......................... yes
Common build options:
  Linker can resolve circular dependencies  yes
Qt Core:
  backtrace .............................. no
  DoubleConversion ....................... yes
    Using system DoubleConversion ........ no
  GLib ................................... no
  ICU .................................... no
  Using system libb2 ..................... no
  Built-in copy of the MIME database ..... yes
  Tracing backend ........................ <none>
  Logging backends:
    journald ............................. no
    syslog ............................... no
    slog2 ................................ no
  PCRE2 .................................. yes
    Using system PCRE2 ................... no
Qt Sql:
  SQL item models ........................ yes
Qt Network:
  getifaddrs() ........................... no
  IPv6 ifname ............................ no
  libproxy ............................... no
  OpenSSL ................................ no
    Qt directly linked to OpenSSL ........ no
  OpenSSL 1.1 ............................ no
  DTLS ................................... no
  OCSP-stapling .......................... no
  SCTP ................................... no
  Use system proxies ..................... yes
  GSSAPI ................................. no
  Brotli Decompression Support ........... no
Qt Gui:
  Accessibility .......................... yes
  FreeType ............................... yes
    Using system FreeType ................ no
  HarfBuzz ............................... yes
    Using system HarfBuzz ................ no
  Fontconfig ............................. no
  Image formats:
    GIF .................................. yes
    ICO .................................. yes
    JPEG ................................. yes
      Using system libjpeg ............... no
    PNG .................................. yes
      Using system libpng ................ no
  Text formats:
    HtmlParser ........................... yes
    CssParser ............................ yes
    OdfWriter ............................ yes
    MarkdownReader ....................... yes
      Using system libmd4c ............... no
    MarkdownWriter ....................... yes
  EGL .................................... yes
  OpenVG ................................. no
  OpenGL:
    Desktop OpenGL ....................... no
    OpenGL ES 2.0 ........................ yes
    OpenGL ES 3.0 ........................ no
    OpenGL ES 3.1 ........................ no
    OpenGL ES 3.2 ........................ no
  Vulkan ................................. yes
  Session Management ..................... yes
Features used by QPA backends:
  evdev .................................. yes
  libinput ............................... no
  INTEGRITY HID .......................... no
  mtdev .................................. no
  tslib .................................. no
  xkbcommon .............................. no
  X11 specific:
    XLib ................................. no
    XCB Xlib ............................. no
    EGL on X11 ........................... no
    xkbcommon-x11 ........................ no
    xcb-sm ............................... no
QPA backends:
  DirectFB ............................... no
  EGLFS .................................. no
  EGLFS details:
    EGLFS OpenWFD ........................ no
    EGLFS i.Mx6 .......................... no
    EGLFS i.Mx6 Wayland .................. no
    EGLFS RCAR ........................... no
    EGLFS EGLDevice ...................... no
    EGLFS GBM ............................ no
    EGLFS VSP2 ........................... no
    EGLFS Mali ........................... no
    EGLFS Raspberry Pi ................... no
    EGLFS X11 ............................ no
  LinuxFB ................................ no
  VNC .................................... no
  VK_KHR_display ......................... no
  QNX:
    lgmon ................................ no
    IMF .................................. no
  XCB:
    Using system-provided xcb-xinput ..... no
    GL integrations:
      GLX Plugin ......................... no
        XCB GLX .......................... no
      EGL-X11 Plugin ..................... no
  Windows:
    Direct 2D ............................ no
    Direct 2D 1.1 ........................ no
    DirectWrite .......................... no
    DirectWrite 3 ........................ no
Qt Widgets:
  GTK+ ................................... no
  Styles ................................. Fusion Windows Android
Qt Testlib:
  Tester for item models ................. yes
Qt PrintSupport:
  CUPS ................................... no
Qt Sql Drivers:
  DB2 (IBM) .............................. no
  InterBase .............................. no
  MySql .................................. no
  OCI (Oracle) ........................... no
  ODBC ................................... no
  PostgreSQL ............................. no
  SQLite ................................. yes
    Using system provided SQLite ......... no
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt QML:
  QML network support .................... yes
  QML debugging and profiling support .... yes
  QML just-in-time compiler .............. yes
  QML sequence object .................... yes
  QML XML http request ................... yes
  QML Locale ............................. yes
Qt QML Models:
  QML list model ......................... yes
  QML delegate model ..................... yes
Qt Quick:
  AnimatedImage item ..................... yes
  Canvas item ............................ yes
  Support for Qt Quick Designer .......... yes
  Flipable item .......................... yes
  GridView item .......................... yes
  ListView item .......................... yes
  TableView item ......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner items ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt 3D:
  Assimp ................................. yes
  System Assimp .......................... no
  Use SSE2 instructions .................. yes
  Use AVX2 instructions .................. no
  Aspects:
    Render aspect ........................ yes
    Input aspect ......................... yes
    Logic aspect ......................... yes
    Animation aspect ..................... yes
    Extras aspect ........................ yes
Qt 3D APIs:
  Vulkan ................................. no
Qt 3D Renderers:
  OpenGL Renderer ........................ yes
  RHI Renderer ........................... no
Qt3D Geometry Loaders:
  Autodesk FBX ........................... no
Qt 5 Compatibility Libraries:
  iconv .................................. no
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ yes
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... no
  Windows Media Foundation ............... no
Qt Charts Types:
  Area Chart ............................. yes
  Line Chart ............................. yes
  Spline Chart ........................... yes
  Scatter Chart .......................... yes
  Bar Chart .............................. yes
  Pie Chart .............................. yes
  Boxplot Chart .......................... yes
  Candlestick Chart ...................... yes
Qt Axis Types:
  DateTime Axis .......................... yes
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  Mac Deployment Tool .................... no
  pixeltool .............................. yes
  qdbus .................................. no
  Qt Attributions Scanner ................ yes
  qtdiag ................................. no
  qtplugininfo ........................... no
  Windows deployment tool ................ no
Qt Opcua:
  Open62541 .............................. yes
  Unified Automation C++ SDK ............. no
  Support for namespace 0 NodeId names ... yes
  Namespace 0 NodeIds generator .......... no
  Open62541 security support ............. no
  Support for global discovery server .... no
Serial Port:
  ntddmodm ............................... no
Qt Remote Objects:
  High Availability Manager (ham) ........ no
Qt Scxml:
  ECMAScript data model for QtScxml ...... yes
Qt Sensors:
Qt SerialBus:
  Socket CAN ............................. no
  Socket CAN FD .......................... no
  SerialPort Support ..................... yes
Qt Virtualkeyboard:
  Desktop integration .................... yes
  Built-in layouts ....................... yes
  Key navigation ......................... no
  Retro style as default ................. no
  Sensitive Debug ........................ no
  Cerence ................................ no
    Static Linking ....................... no
    Handwriting .......................... no
      Alphabetic ......................... no
      CJK ................................ no
    XT9 .................................. no
      XT9 Debug .......................... no
      XT9 9-key layouts .................. no
    Bundle resources ..................... no
      Handwriting ........................ no
      XT9 ................................ no
  Hunspell ............................... no
    Using Hunspell copy from 3rdparty/ ... no
  OpenWnn ................................ yes
  MyScript ............................... no
  Language support enabled for:
    Arabic ............................... yes
    Bulgarian ............................ yes
    Czech ................................ yes
    Danish ............................... yes
    German ............................... yes
    Greek ................................ yes
    English GB ........................... yes
    English US ........................... yes
    Spanish .............................. yes
    Spanish Mexico ....................... yes
    Estonian ............................. yes
    Farsi ................................ yes
    Finnish .............................. yes
    French Canada ........................ yes
    French France ........................ yes
    Hebrew ............................... yes
    Hindi ................................ yes
    Croatian ............................. yes
    Hungarian ............................ yes
    Indonesian ........................... yes
    Italian .............................. yes
    Japanese ............................. yes
    Korean ............................... yes
    Malay ................................ yes
    Norwegian ............................ yes
    Dutch ................................ yes
    Polish ............................... yes
    Portuguese Brazil .................... yes
    Portuguese Portugal .................. yes
    Romanian ............................. yes
    Russian .............................. yes
    Slovak ............................... yes
    Slovenian ............................ yes
    Albanian ............................. yes
    Serbian .............................. yes
    Swedish .............................. yes
    Thai ................................. yes
    Turkish .............................. yes
    Ukrainian ............................ yes
    Vietnamese ........................... yes
    Simplified Chinese ................... yes
    Traditional Chinese .................. yes
    HongKong Chinese ..................... no
  Traditional chinese input methods:
    Zhuyin ............................... yes
    Cangjie .............................. yes
WebEngine Repository Build Options:
  Build Ninja ............................ no
  Build Gn ............................... yes
  Jumbo Build ............................ yes
  Developer build ........................ no
  Build QtWebEngine Modules:
    Build QtWebEngineCore ................ no
    Build QtWebEngineWidgets ............. no
    Build QtWebEngineQuick ............... no
  Build QtPdf Modules:
    Build QtPdfWidgets ................... no
    Build QtPdfQuick ..................... no
  Optional system libraries:
    re2 .................................. no
    icu .................................. no
    libwebp, libwebpmux and libwebpdemux . no
    opus ................................. no
    ffmpeg ............................... no
    libvpx ............................... no
    snappy ............................... no
    glib ................................. no
    zlib ................................. no
    minizip .............................. no
    libevent ............................. no
    libxml2 and libxslt .................. no
    lcms2 ................................ no
    png ...-- Configuring done
............................... no
    jpeg ................................. no
    harfbuzz ............................. no
    freetype ............................. no
    libpci ............................... no

Note: Hunspell disabled. Spelling correction will not be available.

WARNING: QDoc will not be compiled, probably because libclang could not be located. This means that you cannot build the Qt documentation.
Either set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
On Linux systems, you may be able to install libclang by installing the libclang-dev or libclang-devel package, depending on your distribution.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be available. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
WARNING: QtWebEngine won't be built. Build can be done only on Linux, Windows or macOS.
WARNING: QtPdf won't be built. Build can be done only on Linux, Windows or macOS.

Qt is now configured for building. Just run 'cmake --build . --parallel'

Once everything is built, you must run 'cmake --install .'
Qt will be installed into 'E:/Qt/Qt6.2.2/android'

To configure and build other Qt modules, you can use the following convenience script:
        E:/Qt/Qt6.2.2/android/bin/qt-configure-module.bat

If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory

-- Generating done
-- Build files have been written to: E:/repos/qt-everywhere-src-6.2.2

Why ANDROID_PLATFORM is android-21, but not android-23?

Got this:

[5001/7411] Building Java objects for Qt6AndroidNfc.jar
FAILED: qtconnectivity/src/android/nfc/CMakeFiles/Qt6AndroidNfc.dir/java_compiled_Qt6AndroidNfc E:/repos/qt-everywhere-src-6.2.2/qtconnectivity/src/android/nfc/CMakeFiles/Qt6AndroidNfc.dir/java_compiled_Qt6AndroidNfc
cmd.exe /C "cd /D E:\repos\qt-everywhere-src-6.2.2\qtconnectivity\src\android\nfc && E:\PFiles\cmake-3.21.3-windows-x86_64\bin\cmake.exe -DCMAKE_JAVA_CLASS_OUTPUT_PATH=E:/repos/qt-everywhere-src-6.2.2/qtconnectivity/src/android/nfc/CMakeFiles/Qt6AndroidNfc.dir -DCMAKE_JAR_CLASSES_PREFIX= -P E:/PFiles/cmake-3.21.3-windows-x86_64/share/cmake-3.21/Modules/UseJava/ClearClassFiles.cmake && "C:\Program Files\Java\jdk1.8.0_301\bin\javac.exe" -source 8 -target 8 -Xlint:unchecked -bootclasspath C://Users//D-Ef//AppData//Local//Android//Sdk/platforms/android-30/android.jar -classpath ;E:/repos/qt-everywhere-src-6.2.2/qtconnectivity/src/android/nfc;E:/repos/qt-everywhere-src-6.2.2/qtbase/jar;C://Users//D-Ef//AppData//Local//Android//Sdk/platforms/android-30/android.jar -d E:/repos/qt-everywhere-src-6.2.2/qtconnectivity/src/android/nfc/CMakeFiles/Qt6AndroidNfc.dir @E:/repos/qt-everywhere-src-6.2.2/qtconnectivity/src/android/nfc/CMakeFiles/Qt6AndroidNfc.dir/java_sources && E:\PFiles\cmake-3.21.3-windows-x86_64\bin\cmake.exe -E touch E:/repos/qt-everywhere-src-6.2.2/qtconnectivity/src/android/nfc/CMakeFiles/Qt6AndroidNfc.dir/java_compiled_Qt6AndroidNfc"
src\org\qtproject\qt\android\nfc\QtNfc.java:89: error: cannot find symbol
        int flags = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) ? PendingIntent.FLAG_MUTABLE
                                                                 ^
  symbol:   variable S
  location: class VERSION_CODES
src\org\qtproject\qt\android\nfc\QtNfc.java:89: error: cannot find symbol
        int flags = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) ? PendingIntent.FLAG_MUTABLE
                                                                                    ^
  symbol:   variable FLAG_MUTABLE
  location: class PendingIntent
2 errors
[5010/7411] Building CXX object qt3d/src/plugins/renderplugins/scene2d/CMakeFiles/Scene2DPlugin.dir/scene2dplugin.cpp.o
ninja: build stopped: subcommand failed.

There is Build.VERSION_CODES.S that was added in API level 31 and PendingIntent.FLAG_MUTABLE that was not found.

I installed SDK 31 and uninstalled older versions:

When I did the next attempt to configure QT the only difference was:

-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Java: C:/Program Files/Java/jdk1.8.0_301/bin/java.exe (found suitable version "1.8.0.301", minimum required is "1.8") found components: Development
-- Check for feature set changes
-- Building architecture extraction project with the following CMake arguments:
    -DANDROID_ABI=x86_64
    -DANDROID_ARM_MODE=thumb
    -DANDROID_ARM_NEON=TRUE
    -DANDROID_PLATFORM=android-21
    -DANDROID_STL=c++_shared
    -DANDROID_TOOLCHAIN=clang
    -DCMAKE_ANDROID_STL_TYPE=c++_shared
    -DCMAKE_OBJCOPY=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe
    -DCMAKE_TOOLCHAIN_FILE=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/build/cmake/android.toolchain.cmake
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=E:/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms

Finally it built successfully with

cmake --build . --parallel
cmake --install .

The following DLLs were built:

libQt6Bluetooth_x86_64.so
libQt6Bodymovin_x86_64.so
libQt6Charts_x86_64.so
libQt6ChartsQml_x86_64.so
libQt6Coap_x86_64.so
libQt6Concurrent_x86_64.so
libQt6Core_x86_64.so
libQt6Core5Compat_x86_64.so
libQt6DataVisualization_x86_64.so
libQt6Designer_x86_64.so
libQt6DesignerComponents_x86_64.so
libQt6Gui_x86_64.so
libQt6Help_x86_64.so
libQt6LabsAnimation_x86_64.so
libQt6LabsFolderListModel_x86_64.so
libQt6LabsQmlModels_x86_64.so
libQt6LabsSettings_x86_64.so
libQt6LabsSharedImage_x86_64.so
libQt6LabsWavefrontMesh_x86_64.so
libQt6Mqtt_x86_64.so
libQt6Multimedia_x86_64.so
libQt6MultimediaQuick_x86_64.so
libQt6MultimediaWidgets_x86_64.so
libQt6Network_x86_64.so
libQt6NetworkAuth_x86_64.so
libQt6Nfc_x86_64.so
libQt6OpcUa_x86_64.so
libQt6OpenGL_x86_64.so
libQt6OpenGLWidgets_x86_64.so
libQt6Positioning_x86_64.so
libQt6PositioningQuick_x86_64.so
libQt6PrintSupport_x86_64.so
libQt6Qml_x86_64.so
libQt6QmlCore_x86_64.so
libQt6QmlLocalStorage_x86_64.so
libQt6QmlModels_x86_64.so
libQt6QmlWorkerScript_x86_64.so
libQt6QmlXmlListModel_x86_64.so
libQt6Quick_x86_64.so
libQt6Quick3D_x86_64.so
libQt6Quick3DAssetImport_x86_64.so
libQt6Quick3DAssetUtils_x86_64.so
libQt6Quick3DEffects_x86_64.so
libQt6Quick3DHelpers_x86_64.so
libQt6Quick3DIblBaker_x86_64.so
libQt6Quick3DParticles_x86_64.so
libQt6Quick3DRuntimeRender_x86_64.so
libQt6Quick3DUtils_x86_64.so
libQt6QuickControls2_x86_64.so
libQt6QuickControls2Impl_x86_64.so
libQt6QuickDialogs2_x86_64.so
libQt6QuickDialogs2QuickImpl_x86_64.so
libQt6QuickDialogs2Utils_x86_64.so
libQt6QuickLayouts_x86_64.so
libQt6QuickParticles_x86_64.so
libQt6QuickShapes_x86_64.so
libQt6QuickTemplates2_x86_64.so
libQt6QuickTest_x86_64.so
libQt6QuickTimeline_x86_64.so
libQt6QuickWidgets_x86_64.so
libQt6RemoteObjects_x86_64.so
libQt6RemoteObjectsQml_x86_64.so
libQt6Scxml_x86_64.so
libQt6ScxmlQml_x86_64.so
libQt6Sensors_x86_64.so
libQt6SensorsQuick_x86_64.so
libQt6SerialBus_x86_64.so
libQt6SerialPort_x86_64.so
libQt6ShaderTools_x86_64.so
libQt6Sql_x86_64.so
libQt6StateMachine_x86_64.so
libQt6StateMachineQml_x86_64.so
libQt6Svg_x86_64.so
libQt6SvgWidgets_x86_64.so
libQt6Test_x86_64.so
libQt6UiTools_x86_64.so
libQt6VirtualKeyboard_x86_64.so
libQt6WebChannel_x86_64.so
libQt6WebSockets_x86_64.so
libQt6WebView_x86_64.so
libQt6WebViewQuick_x86_64.so
libQt6Widgets_x86_64.so
libQt6Xml_x86_64.so
libQt63DAnimation_x86_64.so
libQt63DCore_x86_64.so
libQt63DExtras_x86_64.so
libQt63DInput_x86_64.so
libQt63DLogic_x86_64.so
libQt63DQuick_x86_64.so
libQt63DQuickAnimation_x86_64.so
libQt63DQuickExtras_x86_64.so
libQt63DQuickInput_x86_64.so
libQt63DQuickRender_x86_64.so
libQt63DQuickScene2D_x86_64.so
libQt63DRender_x86_64.so

Looks like it ANDROID_PLATFORM is incorrect with NDK 23.1.7779620, so I tired the following configuration with -android-ndk-platform android-21:

set "CMAKE_ROOT=E:\PFiles\cmake-3.21.3-windows-x86_64\bin"
set "NINJA_ROOT=E:\PFiles\ninja-win"
set "JDK_ROOT=C:\Program Files\Java\jdk1.8.0_301\bin"
set "MINGW_ROOT=E:\PFiles\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin"
set "PERL_ROOT=E:\PFiles\Strawberry\perl\bin"
   
set PATH=C:\WINDOWS\system32;C:\WINDOWS
set PATH=%CMAKE_ROOT%;%PATH%
set PATH=%NINJA_ROOT%;%PATH%
set PATH=%JDK_ROOT%;%PATH%
set PATH=%MINGW_ROOT%;%PATH%
set PATH=%PERL_ROOT%;%PATH%
set PATH=E:\PFiles\Python35;%PATH%
     
rem Check if the tools are in PATH
where gcc
where mingw32-make.exe
where perl.exe
where javac.exe
where python.exe
where cmake.exe
where ninja.exe
  
set "ANDROID_SDK_ROOT=C:\Users\D-Ef\AppData\Local\Android\Sdk"
set "ANDROID_NDK_PATH=C:\Users\D-Ef\AppData\Local\Android\Sdk\ndk\23.1.7779620"
rem See qtbase\mkspecs\android-clang\qmake.conf
rem see %ANDROID_SDK_ROOT%\build-tools folder
set "ANDROID_BUILD_TOOLS_REVISION=31.0.0"
   
set MY_INSTALL_PATH=E:\Qt\Qt6.2.2\android
set QT_HOST_PATH=E:\Qt\Qt6.2.2\windows
  
configure.bat -platform win32-msvc -xplatform android-clang -prefix %MY_INSTALL_PATH% -qt-host-path %QT_HOST_PATH% ^
  -android-sdk %ANDROID_SDK_ROOT% -android-ndk %ANDROID_NDK_PATH% -android-ndk-platform android-21 -android-abis x86_64 ^
  -DQT_NO_EXCEPTIONS=1 -release -force-debug-info -opensource -confirm-license

it printed the following:

+ cd qtbase
+ E:\repos\qt-everywhere-src-6.2.2\qtbase\configure.bat -top-level -platform win32-msvc -xplatform android-clang -prefix E:\Qt\Qt6.2.2\android -qt-host-path E:\Qt\Qt6.2.2\windows   -android-sdk C:\Users\D-Ef\AppData\Local\Android\Sdk -android-ndk C:\Users\D-Ef\AppData\Local\Android\Sdk\ndk\23.1.7779620 -android-ndk-platform android-21 -android-abis x86_64   -DQT_NO_EXCEPTIONS=1 -release -force-debug-info -opensource -confirm-license
'E:/PFiles/cmake-3.21.3-windows-x86_64/bin/cmake.exe' '-DQT_HOST_PATH=E://Qt//Qt6.2.2//windows' '-DCMAKE_INSTALL_PREFIX=E://Qt//Qt6.2.2//android' '-DQT_QMAKE_TARGET_MKSPEC=win32-msvc' '-DQT_QMAKE_TARGET_MKSPEC=android-clang' '-DCMAKE_C_COMPILER=cl' '-DCMAKE_CXX_COMPILER=cl' '-DANDROID_SDK_ROOT=C://Users//D-Ef//AppData//Local//Android//Sdk' '-DANDROID_NDK_ROOT=C://Users//D-Ef//AppData//Local//Android//Sdk//ndk//23.1.7779620' '-DANDROID_NATIVE_API_LEVEL=21' '-DANDROID_ABI=x86_64' '-DCMAKE_BUILD_TYPE=RelWithDebInfo' '-DQT_EXTRA_DEFINES=QT_NO_EXCEPTIONS=1' '-G' 'Ninja' 'E:/repos/qt-everywhere-src-6.2.2'
-- Android toolchain file within NDK detected: C://Users//D-Ef//AppData//Local//Android//Sdk//ndk//23.1.7779620/build/cmake/android.toolchain.cmake
-- Android build detected, checking configuration defaults...
-- ANDROID_PLATFORM not set. Defaulting to minimum supported version 16.
-- android-16 is not supported for x86_64. Using minimum supported LP64 version 21.
-- Android: Targeting API '21' with architecture 'x86_64', ABI 'x86_64', and processor 'x86_64'
-- Android: Selected unified Clang toolchain
-- The CXX compiler identification is Clang 12.0.8
-- The C compiler identification is Clang 12.0.8
-- The ASM compiler identification is Clang
-- Found assembler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
Checking dependencies of 'qtbase'
Checking dependencies of 'qtshadertools'
Checking dependencies of 'qtsvg'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qt3d'
Checking dependencies of 'qt5compat'
Checking dependencies of 'qtactiveqt'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qtcharts'
Checking dependencies of 'qtcoap'
Checking dependencies of 'qtconnectivity'
Checking dependencies of 'qtdatavis3d'
Checking dependencies of 'qttools'
Checking dependencies of 'qtdoc'
Checking dependencies of 'qtlottie'
Checking dependencies of 'qtmqtt'
Checking dependencies of 'qtnetworkauth'
Checking dependencies of 'qtopcua'
Checking dependencies of 'qtserialport'
Checking dependencies of 'qtpositioning'
Checking dependencies of 'qtquicktimeline'
Checking dependencies of 'qtquick3d'
Checking dependencies of 'qtremoteobjects'
Checking dependencies of 'qtscxml'
Checking dependencies of 'qtsensors'
Checking dependencies of 'qtserialbus'
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtvirtualkeyboard'
Checking dependencies of 'qtwayland'
Checking dependencies of 'qtwebsockets'
Checking dependencies of 'qtwebchannel'
Checking dependencies of 'qtwebengine'
Checking dependencies of 'qtwebview'
Configuring 'qtbase'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Java: C:/Program Files/Java/jdk1.8.0_301/bin/java.exe (found suitable version "1.8.0.301", minimum required is "1.8") found components: Development
-- Check for feature set changes
-- Building architecture extraction project with the following CMake arguments:
    -DANDROID_ABI=x86_64
    -DANDROID_ARM_MODE=thumb
    -DANDROID_ARM_NEON=TRUE
    -DANDROID_PLATFORM=android-21
    -DANDROID_STL=c++_shared
    -DANDROID_TOOLCHAIN=clang
    -DCMAKE_ANDROID_STL_TYPE=c++_shared
    -DCMAKE_OBJCOPY=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe
    -DCMAKE_TOOLCHAIN_FILE=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/build/cmake/android.toolchain.cmake
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=E:/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms
-- Extracting architecture info from E:/repos/qt-everywhere-src-6.2.2/qtbase/config.tests/arch/architecture_test.
-- Performing Test HAVE_LD_VERSION_SCRIPT
-- Performing Test HAVE_LD_VERSION_SCRIPT - Success
-- CMAKE_VERSION: "3.21.3"
-- CMAKE_HOST_SYSTEM: "Windows-10.0.19043"
-- CMAKE_HOST_SYSTEM_NAME: "Windows"
-- CMAKE_HOST_SYSTEM_VERSION: "10.0.19043"
-- CMAKE_HOST_SYSTEM_PROCESSOR: "AMD64"
-- CMAKE_SYSTEM: "Android"
-- CMAKE_SYSTEM_NAME: "Android"
-- CMAKE_SYSTEM_VERSION: "21"
-- CMAKE_SYSTEM_PROCESSOR: "x86_64"
-- CMAKE_CROSSCOMPILING: "TRUE"
-- CMAKE_C_COMPILER: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe" (12.0.8)
-- CMAKE_CXX_COMPILER: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe" (12.0.8)
-- ANDROID_TOOLCHAIN: "clang"
-- ANDROID_NDK: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620"
-- ANDROID_ABI: "x86_64"
-- ANDROID_PLATFORM: "android-21"
-- ANDROID_STL: "c++_shared"
-- ANDROID_PIE: ""
-- ANDROID_CPP_FEATURES: ""
-- ANDROID_ALLOW_UNDEFINED_SYMBOLS: ""
-- ANDROID_ARM_MODE: "thumb"
-- ANDROID_ARM_NEON: "TRUE"
-- ANDROID_DISABLE_FORMAT_STRING_CHECKS: ""
-- ANDROID_NATIVE_API_LEVEL: "21"
-- ANDROID_LLVM_TRIPLE: "x86_64-none-linux-android"
-- Found ZLIB: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android/21/libz.so (found suitable version "1.2.11", minimum required is "1.0.8")
-- Found WrapZLIB: TRUE (Required is at least version "1.0.8")
-- Could NOT find ZSTD: Found unsuitable version "", but required is at least "1.3" (found ZSTD_LIBRARY-NOTFOUND)
-- Could NOT find WrapDBus1 (missing: DBus1_LIBRARY DBus1_INCLUDE_DIR WrapDBus1_FOUND) (Required is at least version "1.2")
-- Performing Test HAVE_cxx14
-- Performing Test HAVE_cxx14 - Success
-- Performing Test HAVE_cxx17
-- Performing Test HAVE_cxx17 - Success
-- Performing Test HAVE_cxx20
-- Performing Test HAVE_cxx20 - Success
-- Performing Test precompiled header support
-- Performing Test precompiled header support - Success
-- Performing Test TEST_use_bfd_linker
-- Performing Test TEST_use_bfd_linker - Success
-- Performing Test TEST_use_gold_linker
-- Performing Test TEST_use_gold_linker - Success
-- Performing Test TEST_use_lld_linker
-- Performing Test TEST_use_lld_linker - Success
-- Performing Test TEST_optimize_debug
-- Performing Test TEST_optimize_debug - Success
-- Performing Test TEST_enable_new_dtags
-- Performing Test TEST_enable_new_dtags - Success
-- Performing Test TEST_gdb_index
-- Performing Test TEST_gdb_index - Success
-- Performing Test HAVE_reduce_relocations
-- Performing Test HAVE_reduce_relocations - Success
-- Performing Test separate debug information support
-- Performing Test separate debug information support - Success
-- Performing Test HAVE_signaling_nan
-- Performing Test HAVE_signaling_nan - Success
-- Performing SIMD Test SSE2 instructions
-- Performing SIMD Test SSE2 instructions - Success
-- Performing SIMD Test SSE3 instructions
-- Performing SIMD Test SSE3 instructions - Success
-- Performing SIMD Test SSSE3 instructions
-- Performing SIMD Test SSSE3 instructions - Success
-- Performing SIMD Test SSE4.1 instructions
-- Performing SIMD Test SSE4.1 instructions - Success
-- Performing SIMD Test SSE4.2 instructions
-- Performing SIMD Test SSE4.2 instructions - Success
-- Performing SIMD Test AES new instructions
-- Performing SIMD Test AES new instructions - Success
-- Performing SIMD Test F16C instructions
-- Performing SIMD Test F16C instructions - Success
-- Performing SIMD Test RDRAND instruction
-- Performing SIMD Test RDRAND instruction - Success
-- Performing SIMD Test RDSEED instruction
-- Performing SIMD Test RDSEED instruction - Success
-- Performing SIMD Test SHA new instructions
-- Performing SIMD Test SHA new instructions - Success
-- Performing SIMD Test AVX instructions
-- Performing SIMD Test AVX instructions - Success
-- Performing SIMD Test AVX2 instructions
-- Performing SIMD Test AVX2 instructions - Success
-- Performing SIMD Test AVX512 F instructions
-- Performing SIMD Test AVX512 F instructions - Success
-- Performing SIMD Test AVX512 ER instructions
-- Performing SIMD Test AVX512 ER instructions - Success
-- Performing SIMD Test AVX512 CD instructions
-- Performing SIMD Test AVX512 CD instructions - Success
-- Performing SIMD Test AVX512 PF instructions
-- Performing SIMD Test AVX512 PF instructions - Success
-- Performing SIMD Test AVX512 DQ instructions
-- Performing SIMD Test AVX512 DQ instructions - Success
-- Performing SIMD Test AVX512 BW instructions
-- Performing SIMD Test AVX512 BW instructions - Success
-- Performing SIMD Test AVX512 VL instructions
-- Performing SIMD Test AVX512 VL instructions - Success
-- Performing SIMD Test AVX512 IFMA instructions
-- Performing SIMD Test AVX512 IFMA instructions - Success
-- Performing SIMD Test AVX512 VBMI instructions
-- Performing SIMD Test AVX512 VBMI instructions - Success
-- Performing Test HAVE_posix_fallocate
-- Performing Test HAVE_posix_fallocate - Success
-- Performing Test HAVE_alloca_stdlib_h
-- Performing Test HAVE_alloca_stdlib_h - Success
-- Performing Test HAVE_alloca_h
-- Performing Test HAVE_alloca_h - Success
-- Performing Test HAVE_alloca_malloc_h
-- Performing Test HAVE_alloca_malloc_h - Failed
-- Performing Test HAVE_stack_protector
-- Performing Test HAVE_stack_protector - Success
-- Performing Test HAVE_intelcet
-- Performing Test HAVE_intelcet - Failed
-- Looking for backtrace
-- Looking for backtrace - not found
-- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "69.1")
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Performing Test HAVE_GETTIME
-- Performing Test HAVE_GETTIME - Success
-- Found WrapRt: TRUE
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_atomicfptr
-- Performing Test HAVE_atomicfptr - Success
-- Performing Test HAVE_clock_monotonic
-- Performing Test HAVE_clock_monotonic - Success
-- Performing Test HAVE_cloexec
-- Performing Test HAVE_cloexec - Success
-- Performing Test HAVE_cxx11_future
-- Performing Test HAVE_cxx11_future - Success
-- Performing Test HAVE_cxx11_random
-- Performing Test HAVE_cxx11_random - Success
-- Performing Test HAVE_cxx17_filesystem
-- Performing Test HAVE_cxx17_filesystem - Success
-- Performing Test HAVE_eventfd
-- Performing Test HAVE_eventfd - Success
-- Performing Test HAVE_futimens
-- Performing Test HAVE_futimens - Success
-- Performing Test HAVE_futimes
-- Performing Test HAVE_futimes - Failed
-- Performing Test HAVE_getauxval
-- Performing Test HAVE_getauxval - Success
-- Performing Test HAVE_getentropy
-- Performing Test HAVE_getentropy - Failed
-- Performing Test HAVE_glibc
-- Performing Test HAVE_glibc - Failed
-- Performing Test HAVE_inotify
-- Performing Test HAVE_inotify - Success
-- Performing Test HAVE_ipc_sysv
-- Performing Test HAVE_ipc_sysv - Failed
-- Performing Test HAVE_ipc_posix
-- Performing Test HAVE_ipc_posix - Failed
-- Performing Test HAVE_linkat
-- Performing Test HAVE_linkat - Success
-- Performing Test HAVE_ppoll
-- Performing Test HAVE_ppoll - Success
-- Performing Test HAVE_pollts
-- Performing Test HAVE_pollts - Failed
-- Performing Test HAVE_poll
-- Performing Test HAVE_poll - Success
-- Performing Test HAVE_renameat2
-- Performing Test HAVE_renameat2 - Failed
-- Performing Test HAVE_statx
-- Performing Test HAVE_statx - Failed
-- Performing Test HAVE_syslog
-- Performing Test HAVE_syslog - Success
-- Performing Test HAVE_xlocalescanprint
-- Performing Test HAVE_xlocalescanprint - Failed
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Performing Test HAVE_getifaddrs
-- Performing Test HAVE_getifaddrs - Failed
-- Performing Test HAVE_ifr_index
-- Performing Test HAVE_ifr_index - Failed
-- Performing Test HAVE_ipv6ifname
-- Performing Test HAVE_ipv6ifname - Failed
-- Performing Test HAVE_linux_netlink
-- Performing Test HAVE_linux_netlink - Success
-- Performing Test HAVE_sctp
-- Performing Test HAVE_sctp - Failed
-- Performing Test HAVE_networklistmanager
-- Performing Test HAVE_networklistmanager - Failed
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Performing Test HAVE_EGL
-- Performing Test HAVE_EGL - Success
-- Found EGL: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include (found version "1.5")
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Performing Test HAVE_GLESv2
-- Performing Test HAVE_GLESv2 - Success
-- Found GLESv2: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include
-- Found WrapVulkanHeaders: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include
-- Performing Test HAVE_egl_brcm
-- Performing Test HAVE_egl_brcm - Failed
-- Performing Test HAVE_egl_egldevice
-- Performing Test HAVE_egl_egldevice - Success
-- Performing Test HAVE_egl_mali
-- Performing Test HAVE_egl_mali - Failed
-- Performing Test HAVE_egl_mali_2
-- Performing Test HAVE_egl_mali_2 - Failed
-- Performing Test HAVE_egl_viv
-- Performing Test HAVE_egl_viv - Failed
-- Performing Test HAVE_egl_openwfd
-- Performing Test HAVE_egl_openwfd - Failed
-- Performing Test HAVE_egl_rcar
-- Performing Test HAVE_egl_rcar - Failed
-- Performing Test HAVE_evdev
-- Performing Test HAVE_evdev - Success
-- Performing Test HAVE_integrityfb
-- Performing Test HAVE_integrityfb - Failed
-- Performing Test HAVE_linuxfb
-- Performing Test HAVE_linuxfb - Failed
-- Performing Test HAVE_opengles3
-- Performing Test HAVE_opengles3 - Failed
-- Performing Test HAVE_opengles31
-- Performing Test HAVE_opengles31 - Failed
-- Performing Test HAVE_opengles32
-- Performing Test HAVE_opengles32 - Failed
-- Performing Test HAVE_directwrite
-- Performing Test HAVE_directwrite - Failed
-- Performing Test HAVE_directwrite3
-- Performing Test HAVE_directwrite3 - Failed
-- Performing Test HAVE_d2d1
-- Performing Test HAVE_d2d1 - Failed
-- Performing Test HAVE_d2d1_1
-- Performing Test HAVE_d2d1_1 - Failed
-- Searching for tool 'Qt6::moc' in package Qt6CoreTools.
-- Qt6::moc was found at E:/Qt/Qt6.2.2/windows/./bin/moc.exe using package Qt6CoreTools.
-- Tool 'Qt6::rcc' was found at E:/Qt/Qt6.2.2/windows/./bin/rcc.exe.
-- Tool 'Qt6::tracegen' was found at E:/Qt/Qt6.2.2/windows/./bin/tracegen.exe.
-- Tool 'Qt6::cmake_automoc_parser' was found at E:/Qt/Qt6.2.2/windows/./bin/cmake_automoc_parser.exe.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Using Qt bundled PCRE2.
-- Found WrapPCRE2: TRUE
-- Using source syncqt found at: E:/repos/qt-everywhere-src-6.2.2/qtbase/libexec/syncqt.pl
-- Running syncqt for module: 'QtCore'
-- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "69.1")
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_DASH_UNDEFINED_SYMBOLS
-- Performing Test HAVE_DASH_UNDEFINED_SYMBOLS - Success
-- Performing Test HAVE_DASH_DASH_NO_UNDEFINED
-- Performing Test HAVE_DASH_DASH_NO_UNDEFINED - Success
CMake Warning at qtbase/src/corelib/CMakeLists.txt:1230 (message):
  xmlstarlet was not found.  freedesktop.org.xml will not be minified!


-- Running syncqt for module: 'QtConcurrent'
-- Running syncqt for module: 'QtSql'
-- Running syncqt for module: 'QtNetwork'
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Running syncqt for module: 'QtXml'
-- Searching for tool 'Qt6::uic' in package Qt6WidgetsTools.
-- Qt6::uic was found at E:/Qt/Qt6.2.2/windows/./bin/uic.exe using package Qt6WidgetsTools.
-- Tool 'Qt6::qlalr' was found at E:/Qt/Qt6.2.2/windows/./bin/qlalr.exe.
-- Tool 'Qt6::qvkgen' was found at E:/Qt/Qt6.2.2/windows/./bin/qvkgen.exe.
-- Tool 'Qt6::qtpaths' was found at E:/Qt/Qt6.2.2/windows/bin/qtpaths.exe.
-- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
-- Using Qt bundled Harfbuzz.
-- Found WrapHarfbuzz: TRUE
-- Using Qt bundled PNG.
-- Found WrapPNG: TRUE
-- Using Qt bundled Freetype.
-- Found WrapFreetype: TRUE
-- Running syncqt for module: 'QtGui'
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Running syncqt for module: 'QtOpenGL'
-- Running syncqt for module: 'QtWidgets'
-- Running syncqt for module: 'QtOpenGLWidgets'
-- Running syncqt for module: 'QtDeviceDiscoverySupport'
-- Running syncqt for module: 'QtFbSupport'
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find XKB (missing: XKB_LIBRARY XKB_INCLUDE_DIR)
-- Running syncqt for module: 'QtInputSupport'
-- Running syncqt for module: 'QtTest'
-- Running syncqt for module: 'QtPrintSupport'
-- Could NOT find Cups (missing: CUPS_LIBRARIES CUPS_INCLUDE_DIR)
-- Could NOT find DB2 (missing: DB2_INCLUDE_DIR DB2_LIBRARY)
-- Could NOT find MySQL (missing: MySQL_LIBRARY MySQL_INCLUDE_DIR)
-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR)
-- Could NOT find Oracle (missing: Oracle_LIBRARY Oracle_INCLUDE_DIR)
-- Could NOT find ODBC (missing: ODBC_LIBRARY ODBC_INCLUDE_DIR)
-- Could NOT find SQLite3 (missing: SQLite3_INCLUDE_DIR SQLite3_LIBRARY)
-- Could NOT find Interbase (missing: Interbase_LIBRARY Interbase_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
Configuring 'qtshadertools'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtShaderTools'
-- Searching for tool 'Qt6::qsb' in package Qt6ShaderToolsTools.
-- Qt6::qsb was found at E:/Qt/Qt6.2.2/windows/bin/qsb.exe using package Qt6ShaderToolsTools.
Configuring 'qtsvg'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSvg'
-- Running syncqt for module: 'QtSvgWidgets'
Configuring 'qtimageformats'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
-- Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
-- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
-- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
Configuring 'qtdeclarative'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found PythonInterp: E:/PFiles/Python35/python.exe (found version "3.5.4")
-- Searching for tool 'Qt6::qmltyperegistrar' in package Qt6QmlTools.
-- Qt6::qmltyperegistrar was found at E:/Qt/Qt6.2.2/windows/./bin/qmltyperegistrar.exe using package Qt6QmlTools.
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Performing Test HAVE_pointer_32bit
-- Performing Test HAVE_pointer_32bit - Failed
-- Performing Test HAVE_pointer_64bit
-- Performing Test HAVE_pointer_64bit - Success
-- Performing Test HAVE_arm_thumb
-- Performing Test HAVE_arm_thumb - Failed
-- Performing Test HAVE_arm_fp
-- Performing Test HAVE_arm_fp - Success
-- Running syncqt for module: 'QtQml'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQmlModels'
-- Running syncqt for module: 'QtQmlCore'
-- Running syncqt for module: 'QtQmlWorkerScript'
-- Running syncqt for module: 'QtQmlLocalStorage'
-- Running syncqt for module: 'QtQmlXmlListModel'
-- Running syncqt for module: 'QtQuick'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQuickShapes'
-- Running syncqt for module: 'QtQuickLayouts'
-- Running syncqt for module: 'QtQuickTest'
-- Running syncqt for module: 'QtQuickTestUtils'
-- Running syncqt for module: 'QtQuickParticles'
-- Running syncqt for module: 'QtQuickWidgets'
-- Running syncqt for module: 'QtQuickTemplates2'
-- Running syncqt for module: 'QtQuickControls2Impl'
-- Running syncqt for module: 'QtQuickControls2'
-- Running syncqt for module: 'QtQuickDialogs2Utils'
-- Running syncqt for module: 'QtQuickDialogs2QuickImpl'
-- Running syncqt for module: 'QtQuickDialogs2'
-- Running syncqt for module: 'QtQuickControlsTestUtils'
-- Running syncqt for module: 'QtLabsSettings'
-- Running syncqt for module: 'QtLabsQmlModels'
-- Running syncqt for module: 'QtLabsFolderListModel'
-- Running syncqt for module: 'QtLabsAnimation'
-- Running syncqt for module: 'QtLabsWavefrontMesh'
-- Running syncqt for module: 'QtLabsSharedImage'
-- Running syncqt for module: 'QtPacketProtocol'
-- Running syncqt for module: 'QtQmlDom'
-- Running syncqt for module: 'QtQmlCompiler'
-- Tool 'Qt6::qmlcachegen' was found at E:/Qt/Qt6.2.2/windows/./bin/qmlcachegen.exe.
-- Running syncqt for module: 'QtQmlDebug'
-- Tool 'Qt6::qmldom' was found at E:/Qt/Qt6.2.2/windows/bin/qmldom.exe.
-- Tool 'Qt6::qmllint' was found at E:/Qt/Qt6.2.2/windows/bin/qmllint.exe.
-- Tool 'Qt6::qmlimportscanner' was found at E:/Qt/Qt6.2.2/windows/./bin/qmlimportscanner.exe.
-- Tool 'Qt6::qmlformat' was found at E:/Qt/Qt6.2.2/windows/bin/qmlformat.exe.
Configuring 'qt3d'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'Qt3DCore'
-- Could NOT find WrapQt3DAssimp (missing: WrapQt3DAssimp_FOUND) (Required is at least version "5")
-- Performing Test
-- Performing Test  - Failed
-- Running syncqt for module: 'Qt3DLogic'
-- Running syncqt for module: 'Qt3DInput'
-- Running syncqt for module: 'Qt3DRender'
-- Could NOT find Vulkan (missing: Vulkan_LIBRARY)
-- Running syncqt for module: 'Qt3DExtras'
-- Running syncqt for module: 'Qt3DAnimation'
-- Running syncqt for module: 'Qt3DQuick'
-- Running syncqt for module: 'Qt3DQuickRender'
-- Running syncqt for module: 'Qt3DQuickScene2D'
-- Running syncqt for module: 'Qt3DQuickExtras'
-- Running syncqt for module: 'Qt3DQuickInput'
-- Running syncqt for module: 'Qt3DQuickAnimation'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/render/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene3d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/extras/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene2d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/input/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/logic/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/animation/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Performing Test Autodesk FBX
-- Performing Test Autodesk FBX - Failed
Configuring 'qt5compat'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCore5Compat'
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "69.1")
-- Performing Test HAVE_ICONV
-- Performing Test HAVE_ICONV - Failed
-- Performing Test HAVE_ICONV_WITH_LIB
-- Performing Test HAVE_ICONV_WITH_LIB - Failed
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt5compat/src/imports/graphicaleffects5/CMakeLists.txt:25 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtactiveqt'
Condition "WIN32" is not met, enabling documentation build only.
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
Configuring 'qtmultimedia'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtMultimedia'
QtMultimedia: created deprecated header(s) { qtmultimediadefs.h }
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Could NOT find AVFoundation (missing: AVFoundation_LIBRARY)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find WrapPulseAudio (missing: PULSEAUDIO_LIBRARY PULSEAUDIO_INCLUDE_DIR WrapPulseAudio_FOUND)
-- Could NOT find WMF (missing: WMF_STRMIIDS_LIBRARY WMF_AMSTRMID_LIBRARY WMF_DMOGUIDS_LIBRARY WMF_UUID_LIBRARY WMF_MSDMO_LIBRARY WMF_OLE32_LIBRARY WMF_OLEAUT32_LIBRARY WMF_MF_LIBRARY WMF_MFUUID_LIBRARY WMF_MFPLAT_LIBRARY WMF_MFCORE_LIBRARY WMF_PROPSYS_LIBRARY)
-- Performing Test evr.h
-- Performing Test evr.h - Failed
-- Performing Test Vivante GPU
-- Performing Test Vivante GPU - Failed
-- Performing Test Video for Linux
-- Performing Test Video for Linux - Success
-- Performing Test wmsdk.h
-- Performing Test wmsdk.h - Failed
-- Performing Test HAVE_linux_dmabuf
-- Performing Test HAVE_linux_dmabuf - Failed
-- Running syncqt for module: 'QtMultimediaQuick'
-- Running syncqt for module: 'QtMultimediaWidgets'
Configuring 'qtcharts'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCharts'
-- Running syncqt for module: 'QtChartsQml'
Configuring 'qtcoap'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCoap'
Configuring 'qtconnectivity'
-- Could NOT find Qt6DBus (missing: Qt6DBus_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "DBus".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtconnectivity/CMakeLists.txt:19 (find_package)


-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtBluetooth'
-- Performing Test BlueZ Low Energy
-- Performing Test BlueZ Low Energy - Failed
-- Performing Test Linux Crypto API
-- Performing Test Linux Crypto API - Success
-- Performing Test WinRT Bluetooth API
-- Performing Test WinRT Bluetooth API - Failed
-- Running syncqt for module: 'QtNfc'
CMake Warning at qtbase/cmake/QtPlatformAndroid.cmake:28 (message):
  Could not locate Android SDK jar for api 'android-21', defaulting to
  android-31
Call Stack (most recent call first):
  qtconnectivity/src/android/bluetooth/CMakeLists.txt:1 (qt_get_android_sdk_jar_for_api)


CMake Warning at qtbase/cmake/QtPlatformAndroid.cmake:28 (message):
  Could not locate Android SDK jar for api 'android-18', defaulting to
  android-31
Call Stack (most recent call first):
  qtconnectivity/src/android/nfc/CMakeLists.txt:1 (qt_get_android_sdk_jar_for_api)


Configuring 'qtdatavis3d'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtDataVisualization'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtdatavis3d/src/datavisualizationqml2/CMakeLists.txt:26 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qttools'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Running syncqt for module: 'QtTools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Searching for tool 'Qt6::lconvert' in package Qt6LinguistTools.
-- Qt6::lconvert was found at E:/Qt/Qt6.2.2/windows/bin/lconvert.exe using package Qt6LinguistTools.
-- Tool 'Qt6::lprodump' was found at E:/Qt/Qt6.2.2/windows/./bin/lprodump.exe.
-- Tool 'Qt6::lrelease' was found at E:/Qt/Qt6.2.2/windows/bin/lrelease.exe.
-- Tool 'Qt6::lrelease-pro' was found at E:/Qt/Qt6.2.2/windows/./bin/lrelease-pro.exe.
-- Tool 'Qt6::lupdate' was found at E:/Qt/Qt6.2.2/windows/bin/lupdate.exe.
-- Tool 'Qt6::lupdate-pro' was found at E:/Qt/Qt6.2.2/windows/./bin/lupdate-pro.exe.
-- Running syncqt for module: 'QtUiPlugin'
-- Running syncqt for module: 'QtUiTools'
-- Running syncqt for module: 'QtDesigner'
QtDesigner: WARNING: E:/repos/qt-everywhere-src-6.2.2/qttools/src/designer/src/lib/uilib/formbuilder.h includes abstractformbuilder.h when it should include QtDesigner/abstractformbuilder.h
QtDesigner: created deprecated header(s) { QDesignerCustomWidgetInterface, customwidget.h, QDesignerExportWidget, qdesignerexportwidget.h, QDesignerCustomWidgetCollectionInterface }
-- Running syncqt for module: 'QtDesignerComponents'
-- Running syncqt for module: 'QtHelp'
-- Searching for tool 'Qt6::qhelpgenerator' in package Qt6ToolsTools.
-- Qt6::qhelpgenerator was found at E:/Qt/Qt6.2.2/windows/bin/qhelpgenerator.exe using package Qt6ToolsTools.
-- Tool 'Qt6::qtattributionsscanner' was found at E:/Qt/Qt6.2.2/windows/./bin/qtattributionsscanner.exe.
Configuring 'qtdoc'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
Configuring 'qtlottie'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtBodymovin'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtlottie/src/imports/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtmqtt'
-- Could NOT find Qt6WebSockets (missing: Qt6WebSockets_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebSockets".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebSockets/Qt6WebSocketsConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtmqtt/CMakeLists.txt:20 (find_package)


-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtMqtt'
Configuring 'qtnetworkauth'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtNetworkAuth'
Configuring 'qtopcua'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtOpcUa'
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Performing Test HAVE_uacpp
-- Performing Test HAVE_uacpp - Failed
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but declarative_opcua sets PUBLIC_LIBRARIES to the following
  value:

      Qt::Core;Qt::Gui;Qt::OpcUa;Qt::Quick

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:220 (qt_internal_add_plugin)
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtserialport'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSerialPort'
-- Performing Test HAVE_ntddmodm
-- Performing Test HAVE_ntddmodm - Failed
Configuring 'qtpositioning'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtPositioning'
-- Performing Test WinRT geolocation
-- Performing Test WinRT geolocation - Failed
-- Running syncqt for module: 'QtPositioningQuick'
Configuring 'qtquicktimeline'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtQuickTimeline'
Configuring 'qtquick3d'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtQuick3DUtils'
-- Running syncqt for module: 'QtQuick3DAssetImport'
-- Running syncqt for module: 'QtQuick3DRuntimeRender'
-- Running syncqt for module: 'QtQuick3D'
-- Running syncqt for module: 'QtQuick3DParticles'
-- Running syncqt for module: 'QtQuick3DAssetUtils'
QtQuick3DAssetUtils: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtquick3d/src/assetutils/qquick3druntimeloader_p.h does not have the "We mean it." warning
-- Running syncqt for module: 'QtQuick3DHelpers'
-- Running syncqt for module: 'QtQuick3DIblBaker'
-- Searching for tool 'Qt6::balsam' in package Qt6Quick3DTools.
-- Qt6::balsam was found at E:/Qt/Qt6.2.2/windows/bin/balsam.exe using package Qt6Quick3DTools.
-- Tool 'Qt6::balsamui' was found at E:/Qt/Qt6.2.2/windows/bin/balsamui.exe.
-- Tool 'Qt6::meshdebug' was found at E:/Qt/Qt6.2.2/windows/bin/meshdebug.exe.
-- Tool 'Qt6::shadergen' was found at E:/Qt/Qt6.2.2/windows/bin/shadergen.exe.
-- Tool 'Qt6::instancer' was found at E:/Qt/Qt6.2.2/windows/bin/instancer.exe.
Configuring 'qtremoteobjects'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtRepParser'
-- Running syncqt for module: 'QtRemoteObjects'
-- Running syncqt for module: 'QtRemoteObjectsQml'
-- Searching for tool 'Qt6::repc' in package Qt6RemoteObjectsTools.
-- Qt6::repc was found at E:/Qt/Qt6.2.2/windows/./bin/repc.exe using package Qt6RemoteObjectsTools.
Configuring 'qtscxml'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtScxml'
-- Running syncqt for module: 'QtStateMachine'
-- Running syncqt for module: 'QtStateMachineQml'
-- Running syncqt for module: 'QtScxmlQml'
-- Searching for tool 'Qt6::qscxmlc' in package Qt6ScxmlTools.
-- Qt6::qscxmlc was found at E:/Qt/Qt6.2.2/windows/bin/qscxmlc.exe using package Qt6ScxmlTools.
Configuring 'qtsensors'
-- Could NOT find Qt6DBus (missing: Qt6DBus_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "DBus".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtsensors/CMakeLists.txt:14 (find_package)


-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSensors'
-- Running syncqt for module: 'QtSensorsQuick'
Configuring 'qtserialbus'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSerialBus'
QtSerialBus: created deprecated header(s) { qserialbusglobal.h }
-- Performing Test Socket CAN
-- Performing Test Socket CAN - Success
-- Performing Test Socket CAN FD
-- Performing Test Socket CAN FD - Success
Configuring 'qttranslations'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
CMake Warning at qttranslations/translations/CMakeLists.txt:38 (message):
  Directory
  'E:/repos/qt-everywhere-src-6.2.2/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


CMake Warning at qttranslations/translations/CMakeLists.txt:45 (message):
  No source files located for qtlocation, skipping target creation
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


Configuring 'qtvirtualkeyboard'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- Could NOT find XCB_XCB (missing: XCB_XCB_LIBRARY XCB_XCB_INCLUDE_DIR) (found version "")
-- Could NOT find XCB_RENDER (missing: XCB_RENDER_LIBRARY XCB_RENDER_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_SHAPE (missing: XCB_SHAPE_LIBRARY XCB_SHAPE_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_XFIXES (missing: XCB_XFIXES_LIBRARY XCB_XFIXES_INCLUDE_DIR XCB_XCB_FOUND XCB_RENDER_FOUND XCB_SHAPE_FOUND) (found version "")
-- Could NOT find XCB (missing: XCB_LIBRARIES XFIXES)
-- Running syncqt for module: 'QtVirtualKeyboard'
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find CerenceHwrAlphabetic (missing: CERENCE_HWR_ALPHABETIC_INCLUDE_DIRS)
-- Could NOT find CerenceHwrCjk (missing: CERENCE_HWR_CJK_INCLUDE_DIRS)
-- Could NOT find CerenceXt9 (missing: CERENCE_XT9_INCLUDE_DIRS)
-- Could NOT find MyScript (missing: MyScript_ROOT_DIR MyScript_VOIM_INCLUDE_DIR MyScript_VOIM_BINARY MyScript_Ink_BINARY MyScript_Prediction_BINARY MyScript_Text_BINARY MyScript_Engine_BINARY)
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/import/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/settings/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/styles/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwayland'
Skipping the build as the condition "LINUX OR MACOS OR QNX" is not met.
Configuring 'qtwebsockets'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebSockets'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebchannel'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebChannel'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebchannel/src/imports/webchannel/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebengine'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Ninja: E:/PFiles/ninja-win/ninja.exe (found suitable version "1.10.2", minimum required is "1.7.2")
-- Could NOT find Gn (missing: Gn_EXECUTABLE) (Required is exact version "6.2.2")
-- Could NOT find Python2 (missing: Python2_EXECUTABLE Interpreter) (Required is at least version "2.7.5")
    Reason given by package:
        Interpreter: Wrong major version for the interpreter "E:/PFiles/Python35/python.exe"

-- Could NOT find GPerf (missing: GPerf_EXECUTABLE)
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Could NOT find FLEX (missing: FLEX_EXECUTABLE)
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find Snappy (missing: SNAPPY_LIBRARY SNAPPY_INCLUDE_DIR)
-- Could NOT find Nodejs: Found unsuitable version "", but required is at least "10.19" (found Nodejs_EXECUTABLE-NOTFOUND)
-- Performing Test HAVE_khr
-- Performing Test HAVE_khr - Success
-- Performing Test HAVE_winversion
-- Performing Test HAVE_winversion - Success
-- Support check for QtWebEngine failed: Build can be done only on Linux, Windows or macOS.
-- Support check for QtPdf failed: Build can be done only on Linux, Windows or macOS.
Configuring 'qtwebview'
-- Could NOT find Qt6WebEngineCore (missing: Qt6WebEngineCore_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineCore".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineCore/Qt6WebEngineCoreConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)
-- Could NOT find Qt6WebEngineQuick (missing: Qt6WebEngineQuick_DIR)


CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineQuick".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineQuick/Qt6WebEngineQuickConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)

-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms

-- Running syncqt for module: 'QtWebView'
-- Running syncqt for module: 'QtWebViewQuick'
QtWebViewQuick: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtwebview/src/quick/qtwebviewquickglobal_p.h does not have the "We mean it." warning
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but QAndroidWebViewPlugin sets PUBLIC_LIBRARIES to the
  following value:

      Qt::Core;Qt::Gui;Qt::WebViewPrivate

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtwebview/src/plugins/android/CMakeLists.txt:5 (qt_internal_add_plugin)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The following packages have been found:

 * QtBuildInternals
 * WrapZLIB (required version >= 1.0.8)
 * WrapPCRE2
 * WrapRt
 * WrapHarfbuzz
 * WrapPNG
 * WrapFreetype
 * ZLIB
 * PythonInterp
 * WrapIconv
 * Qt6CorePrivate (required version >= 6.2.2)
 * Qt6QmlDevToolsPrivate (required version >= 6.2.2)
 * Qt6ToolsTools (required version >= 6.2.2)
 * Qt6Sql (required version >= 6.2.2)
 * Qt6QmlXmlListModel (required version >= 6.2.2)
 * Qt6Concurrent (required version >= 6.2.2)
 * Qt6ShaderToolsTools (required version >= 6.2.2)
 * Qt6ShaderTools (required version >= 6.2.2)
 * Qt6QuickTimeline (required version >= 6.2.2)
 * Qt6Quick3DTools (required version >= 6.2.2)
 * Qt6RemoteObjectsTools (required version >= 6.2.2)
 * Qt6ScxmlTools (required version >= 6.2.2)
 * Qt6SerialPort (required version >= 6.2.2)
 * Qt6LinguistTools (required version >= 6.2.2)
 * Qt6Linguist (required version >= 6.2.2)
 * Qt6Svg (required version >= 6.2.2)
 * Qt6WidgetsTools (required version >= 6.2.2)
 * Qt6Widgets (required version >= 6.2.2)
 * Qt6PrintSupport (required version >= 6.2.2)
 * Qt6WebChannel (required version >= 6.2.2)
 * Qt6Positioning (required version >= 6.2.2)
 * Qt6QmlPrivate (required version >= 6.2.2)
 * Qt6QuickTemplates2Private (required version >= 6.2.2)
 * Qt6QuickControls2 (required version >= 6.2.2)
 * Qt6Test (required version >= 6.2.2)
 * Qt6OpenGLPrivate (required version >= 6.2.2)
 * Qt6QuickWidgets (required version >= 6.2.2)
 * Qt6QuickPrivate (required version >= 6.2.2)
 * Qt6QuickTest (required version >= 6.2.2)
 * Qt6WebSockets (required version >= 6.2.2)
 * Qt6UiPlugin (required version >= 6.2.2)
 * Qt6Xml (required version >= 6.2.2)
 * Qt6OpenGLWidgets (required version >= 6.2.2)
 * Qt6Designer (required version >= 6.2.2)
 * Ninja (required version >= 1.7.2), Build tool, <https://ninja-build.org/>
 * Qt6BuildInternals (required version >= 6.2.2)
 * WrapAtomic
 * Qt6CoreTools (required version >= 6.2.2)
 * Qt6Core (required version >= 6.2.2)
 * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
 * GLESv2
 * Qt6Gui (required version >= 6.2.2)
 * Qt6QmlTools (required version >= 6.2.2)
 * Qt6Network (required version >= 6.2.2)
 * Qt6Qml (required version >= 6.2.2)
 * Qt6QmlModels (required version >= 6.2.2)
 * Threads
 * WrapVulkanHeaders
 * Qt6OpenGL (required version >= 6.2.2)
 * Qt6Quick (required version >= 6.2.2)
 * Qt6 (required version >= 6.2.2)
 * Qt6HostInfo
 * Java (required version >= 1.8)

-- The following OPTIONAL packages have not been found:

 * zstd
 * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Backtrace
 * WrapBacktrace
 * double-conversion
 * WrapDoubleConversion
 * Libsystemd
 * Libb2
 * PCRE2 (required version >= 10.20)
 * WrapSystemPCRE2 (required version >= 10.20)
 * Slog2
 * unofficial-brotli
 * WrapBrotli
 * Libproxy
 * GSSAPI, Generic Security Services Application Program Interface
 * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
 * ATSPI2
 * DirectFB
 * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
 * Freetype (required version >= 2.2.0)
 * WrapSystemFreetype (required version >= 2.2.0)
 * Fontconfig
 * gbm, Mesa gbm library., <http://www.mesa3d.org>
 * harfbuzz (required version >= 2.6.0)
 * WrapSystemHarfbuzz (required version >= 2.6.0)
 * md4c
 * WrapSystemMd4c
 * PNG
 * WrapSystemPNG
 * OpenGL
 * WrapOpenGL
 * GTK3 (required version >= 3.6)
 * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
 * XKB, XKB API common to servers and clients., <http://xkbcommon.org>
 * Tslib
 * Mtdev
 * Cups
 * DB2, IBM DB2 client library, <https://www.ibm.com>
 * MySQL, MySQL client library, <https://www.mysql.com>
 * PostgreSQL
 * Oracle, Oracle client library, <https://www.oracle.com>
 * ODBC
 * SQLite3
 * Interbase, Interbase client library, <https://www.embarcadero.com/products/interbase>
 * JPEG
 * Jasper
 * WrapJasper
 * TIFF
 * WebP
 * WrapWebP
 * Libmng
 * LTTngUST
 * Qt6Gamepad (required version >= 6.2.2)
 * Qt6Multimedia (required version >= 6.2.2)
 * assimp (required version >= 5)
 * WrapQt3DAssimp (required version >= 5)
 * Vulkan
 * ICU
 * ALSA
 * AVFoundation
 * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
 * GObject
 * GStreamer
 * PulseAudio
 * WrapPulseAudio
 * WMF
 * BlueZ
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * Uacpp, The Unified Automation C++ OPC UA SDK, <https://www.unified-automation.com/products/server-sdk/c-ua-server-sdk.html>
 * OpenSSL (required version >= 1.1)
 * WrapOpenSSLHeaders (required version >= 1.1)
 * WrapOpenSSL (required version >= 1.1)
 * Libudev
 * Gypsy
 * Gconf
 * Qt6DBus (required version >= 6.2.2)
 * XCB, X protocol C-language Binding, <http://xcb.freedesktop.org>
 * Hunspell
 * CerenceHwrAlphabetic
 * CerenceHwrCjk
 * CerenceXt9
 * MyScript
 * Gn (required version == 6.2.2), Meta-build system, <https://gn.googlesource.com/gn/>
 * Python2 (required version >= 2.7.5)
 * GPerf, Perfect hash function generator, <https://www.gnu.org/software/gperf/>
 * BISON
 * FLEX
 * Snappy
 * Nodejs (required version >= 10.19), JavaScript runtime environment that runs on the V8 engine, <https://nodejs.org/>
 * PkgConfig
 * Qt6QmlCompilerPlus
 * Qt6WebEngineCore (required version >= 6.2.2)
 * Qt6WebEngineQuick (required version >= 6.2.2)

Configure summary:

Building for: android-clang (x86_64, CPU features: cx16 mmx popcnt sse sse2 sse3 ssse3 sse4.1 sse4.2 sse4)
Compiler: clang 12.0.8
Build options:
  Mode ................................... release (with debug info)
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. yes
  Using C standard ....................... C11
  Using C++ standard ..................... C++17
  Using ccache ........................... no
  Relocatable ............................ yes
  Using precompiled headers .............. yes
  Using LTCG ............................. no
  Target compiler supports:
    SSE .................................. SSE2 SSE3 SSSE3 SSE4.1 SSE4.2
    AVX .................................. <none>
    AVX512 ............................... <none>
    Other x86 ............................ AES RDRAND SHA
    Intrinsics without compiler architecture option  yes
  Sanitizers:
    Addresses ............................ no
    Threads .............................. no
    Memory ............................... no
    Fuzzer (instrumentation only) ........ no
    Undefined ............................ no
  Build parts ............................ libs
  App store compliance ................... yes
Qt modules and options:
  Qt Concurrent .......................... yes
  Qt D-Bus ............................... no
  Qt D-Bus directly linked to libdbus .... no
  Qt Gui ................................. yes
  Qt Network ............................. yes
  Qt PrintSupport ........................ yes
  Qt Sql ................................. yes
  Qt Testlib ............................. yes
  Qt Widgets ............................. yes
  Qt Xml ................................. yes
Support enabled for:
  Using pkg-config ....................... no
  udev ................................... no
  Using system zlib ...................... yes
  Zstandard support ...................... no
  Thread support ......................... yes
Common build options:
  Linker can resolve circular dependencies  yes
Qt Core:
  backtrace .............................. no
  DoubleConversion ....................... yes
    Using system DoubleConversion ........ no
  GLib ................................... no
  ICU .................................... no
  Using system libb2 ..................... no
  Built-in copy of the MIME database ..... yes
  Tracing backend ........................ <none>
  Logging backends:
    journald ............................. no
    syslog ............................... no
    slog2 ................................ no
  PCRE2 .................................. yes
    Using system PCRE2 ................... no
Qt Sql:
  SQL item models ........................ yes
Qt Network:
  getifaddrs() ........................... no
  IPv6 ifname ............................ no
  libproxy ............................... no
  OpenSSL ................................ no
    Qt directly linked to OpenSSL ........ no
  OpenSSL 1.1 ............................ no
  DTLS ................................... no
  OCSP-stapling .......................... no
  SCTP ................................... no
  Use system proxies ..................... yes
  GSSAPI ................................. no
  Brotli Decompression Support ........... no
Qt Gui:
  Accessibility .......................... yes
  FreeType ............................... yes
    Using system FreeType ................ no
  HarfBuzz ............................... yes
    Using system HarfBuzz ................ no
  Fontconfig ............................. no
  Image formats:
    GIF .................................. yes
    ICO .................................. yes
    JPEG ................................. yes
      Using system libjpeg ............... no
    PNG .................................. yes
      Using system libpng ................ no
  Text formats:
    HtmlParser ........................... yes
    CssParser ............................ yes
    OdfWriter ............................ yes
    MarkdownReader ....................... yes
      Using system libmd4c ............... no
    MarkdownWriter ....................... yes
  EGL .................................... yes
  OpenVG ................................. no
  OpenGL:
    Desktop OpenGL ....................... no
    OpenGL ES 2.0 ........................ yes
    OpenGL ES 3.0 ........................ no
    OpenGL ES 3.1 ........................ no
    OpenGL ES 3.2 ........................ no
  Vulkan ................................. yes
  Session Management ..................... yes
Features used by QPA backends:
  evdev .................................. yes
  libinput ............................... no
  INTEGRITY HID .......................... no
  mtdev .................................. no
  tslib .................................. no
  xkbcommon .............................. no
  X11 specific:
    XLib ................................. no
    XCB Xlib ............................. no
    EGL on X11 ........................... no
    xkbcommon-x11 ........................ no
    xcb-sm ............................... no
QPA backends:
  DirectFB ............................... no
  EGLFS .................................. no
  EGLFS details:
    EGLFS OpenWFD ........................ no
    EGLFS i.Mx6 .......................... no
    EGLFS i.Mx6 Wayland .................. no
    EGLFS RCAR ........................... no
    EGLFS EGLDevice ...................... no
    EGLFS GBM ............................ no
    EGLFS VSP2 ........................... no
    EGLFS Mali ........................... no
    EGLFS Raspberry Pi ................... no
    EGLFS X11 ............................ no
  LinuxFB ................................ no
  VNC .................................... no
  VK_KHR_display ......................... no
  QNX:
    lgmon ................................ no
    IMF .................................. no
  XCB:
    Using system-provided xcb-xinput ..... no
    GL integrations:
      GLX Plugin ......................... no
        XCB GLX .......................... no
      EGL-X11 Plugin ..................... no
  Windows:
    Direct 2D ............................ no
    Direct 2D 1.1 ........................ no
    DirectWrite .......................... no
    DirectWrite 3 ........................ no
Qt Widgets:
  GTK+ ................................... no
  Styles ................................. Fusion Windows Android
Qt Testlib:
  Tester for item models ................. yes
Qt PrintSupport:
  CUPS ................................... no
Qt Sql Drivers:
  DB2 (IBM) .............................. no
  InterBase .............................. no
  MySql .................................. no
  OCI (Oracle) ........................... no
  ODBC ................................... no
  PostgreSQL ............................. no
  SQLite ................................. yes
    Using system provided SQLite ......... no
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt QML:
  QML network support .................... yes
  QML debugging and profiling support .... yes
  QML just-in-time compiler .............. yes
  QML sequence object .................... yes
  QML XML http request ................... yes
  QML Locale ............................. yes
Qt QML Models:
  QML list model ......................... yes
  QML delegate model ..................... yes
Qt Quick:
  AnimatedImage item ..................... yes
  Canvas item ............................ yes
  Support for Qt Quick Designer .......... yes
  Flipable item .......................... yes
  GridView item .......................... yes
  ListView item .......................... yes
  TableView item ......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner items ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt 3D:
  Assimp ................................. yes
  System Assimp .......................... no
  Use SSE2 instructions .................. yes
  Use AVX2 instructions .................. no
  Aspects:
    Render aspect ........................ yes
    Input aspect ......................... yes
    Logic aspect ......................... yes
    Animation aspect ..................... yes
    Extras aspect ........................ yes
Qt 3D APIs:
  Vulkan ................................. no
Qt 3D Renderers:
  OpenGL Renderer ........................ yes
  RHI Renderer ........................... no
Qt3D Geometry Loaders:
  Autodesk FBX ........................... no
Qt 5 Compatibility Libraries:
  iconv .................................. no
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ yes
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... no
  Windows Media Foundation ............... no
Qt Charts Types:
  Area Chart ............................. yes
  Line Chart ............................. yes
  Spline Chart ........................... yes
  Scatter Chart .......................... yes
  Bar Chart .............................. yes
  Pie Chart .............................. yes
  Boxplot Chart .......................... yes
  Candlestick Chart ...................... yes
Qt Axis Types:
  DateTime Axis .......................... yes
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  Mac Deployment Tool .................... no
  pixeltool .............................. yes
  qdbus .................................. no
  Qt Attributions Scanner ................ yes
  qtdiag ................................. no
  qtplugininfo ........................... no
  Windows deployment tool ................ no
Qt Opcua:
  Open62541 .............................. yes
  Unified Automation C++ SDK ............. no
  Support for namespace 0 NodeId names ... yes
  Namespace 0 NodeIds generator .......... no
  Open62541 security support ............. no
  Support for global discovery server .... no
Serial Port:
  ntddmodm ............................... no
Qt Remote Objects:
  High Availability Manager (ham) ........ no
Qt Scxml:
  ECMAScript data model for QtScxml ...... yes
Qt Sensors:
Qt SerialBus:
  Socket CAN ............................. no
  Socket CAN FD .......................... no
  SerialPort Support ..................... yes
Qt Virtualkeyboard:
  Desktop integration .................... yes
  Built-in layouts ....................... yes
  Key navigation ......................... no
  Retro style as default ................. no
  Sensitive Debug ........................ no
  Cerence ................................ no
    Static Linking ....................... no
    Handwriting .......................... no
      Alphabetic ......................... no
      CJK ................................ no
    XT9 .................................. no
      XT9 Debug .......................... no
      XT9 9-key layouts .................. no
    Bundle resources ..................... no
      Handwriting ........................ no
      XT9 ................................ no
  Hunspell ............................... no
    Using Hunspell copy from 3rdparty/ ... no
  OpenWnn ................................ yes
  MyScript ............................... no
  Language support enabled for:
    Arabic ............................... yes
    Bulgarian ............................ yes
    Czech ................................ yes
    Danish ............................... yes
    German ............................... yes
    Greek ................................ yes
    English GB ........................... yes
    English US ........................... yes
    Spanish .............................. yes
    Spanish Mexico ....................... yes
    Estonian ............................. yes
    Farsi ................................ yes
    Finnish .............................. yes
    French Canada ........................ yes
    French France ........................ yes
    Hebrew ............................... yes
    Hindi ................................ yes
    Croatian ............................. yes
    Hungarian ............................ yes
    Indonesian ........................... yes
    Italian .............................. yes
    Japanese ............................. yes
    Korean ............................... yes
    Malay ................................ yes
    Norwegian ............................ yes
    Dutch ................................ yes
    Polish ............................... yes
    Portuguese Brazil .................... yes
    Portuguese Portugal .................. yes
    Romanian ............................. yes
    Russian .............................. yes
    Slovak ............................... yes
    Slovenian ............................ yes
    Albanian ............................. yes
    Serbian .............................. yes
    Swedish .............................. yes
    Thai ................................. yes
    Turkish .............................. yes
    Ukrainian ............................ yes
    Vietnamese ........................... yes
    Simplified Chinese ................... yes
    Traditional Chinese .................. yes
    HongKong Chinese ..................... no
  Traditional chinese input methods:
    Zhuyin ............................... yes
    Cangjie .............................. yes
WebEngine Repository Build Options:
  Build Ninja ............................ no
  Build Gn ............................... yes
  Jumbo Build ............................ yes
  Developer build ........................ no
  Build QtWebEngine Modules:
    Build QtWebEngineCore ................ no
    Build QtWebEngineWidgets ............. no
    Build QtWebEngineQuick ............... no
  Build QtPdf Modules:
    Build QtPdfWidgets ................... no
    Build QtPdfQuick ..................... no
  Optional system libraries:
    re2 .................................. no
    icu .................................. no
    libwebp, libwebpmux and libwebpdemux . no
    opus ................................. no
    ffmpeg ............................... no
    libvpx ............................... no
    snappy ............................... no
    glib ................................. no
    zlib ................................. no
    minizip .............................. no
    libevent ............................. no
    libxml2 and libxslt .................. no
    lcms2 ................................ no
    png .................................. no
    jpeg ................................. no
    harfbuzz ............................. no
    freetype ............................. no
    libpci ............................... no

Note: Hunspell disabled. Spelling correction will not be available.

WARNING: QDoc will not be compiled, probably because libclang could not be located. This means that you cannot build the Qt documentation.
Either set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
On Linux systems, you may be able to install libclang by installing the libclang-dev or libclang-devel package, depending on your distribution.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be available. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
WARNING: QtWebEngine won't be built. Build can be done only on Linux, Windows or macOS.
WARNING: QtPdf won't be built. Build can be done only on Linux, Windows or macOS.

Qt is now configured for building. Just run 'cmake --build . --parallel'

Once everything is built, you must run 'cmake --install .'
Qt will be installed into 'E:/Qt/Qt6.2.2/android'

To configure and build other Qt modules, you can use the following convenience script:
        E:/Qt/Qt6.2.2/android/bin/qt-configure-module.bat

If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory

-- Configuring done
-- Generating done
-- Build files have been written to: E:/repos/qt-everywhere-src-6.2.2
cmake --build . --parallel
cmake --install .

The following DLLs were built:

libQt6Bluetooth_x86_64.so
libQt6Bodymovin_x86_64.so
libQt6Charts_x86_64.so
libQt6ChartsQml_x86_64.so
libQt6Coap_x86_64.so
libQt6Concurrent_x86_64.so
libQt6Core_x86_64.so
libQt6Core5Compat_x86_64.so
libQt6DataVisualization_x86_64.so
libQt6Designer_x86_64.so
libQt6DesignerComponents_x86_64.so
libQt6Gui_x86_64.so
libQt6Help_x86_64.so
libQt6LabsAnimation_x86_64.so
libQt6LabsFolderListModel_x86_64.so
libQt6LabsQmlModels_x86_64.so
libQt6LabsSettings_x86_64.so
libQt6LabsSharedImage_x86_64.so
libQt6LabsWavefrontMesh_x86_64.so
libQt6Mqtt_x86_64.so
libQt6Multimedia_x86_64.so
libQt6MultimediaQuick_x86_64.so
libQt6MultimediaWidgets_x86_64.so
libQt6Network_x86_64.so
libQt6NetworkAuth_x86_64.so
libQt6Nfc_x86_64.so
libQt6OpcUa_x86_64.so
libQt6OpenGL_x86_64.so
libQt6OpenGLWidgets_x86_64.so
libQt6Positioning_x86_64.so
libQt6PositioningQuick_x86_64.so
libQt6PrintSupport_x86_64.so
libQt6Qml_x86_64.so
libQt6QmlCore_x86_64.so
libQt6QmlLocalStorage_x86_64.so
libQt6QmlModels_x86_64.so
libQt6QmlWorkerScript_x86_64.so
libQt6QmlXmlListModel_x86_64.so
libQt6Quick_x86_64.so
libQt6Quick3D_x86_64.so
libQt6Quick3DAssetImport_x86_64.so
libQt6Quick3DAssetUtils_x86_64.so
libQt6Quick3DEffects_x86_64.so
libQt6Quick3DHelpers_x86_64.so
libQt6Quick3DIblBaker_x86_64.so
libQt6Quick3DParticles_x86_64.so
libQt6Quick3DRuntimeRender_x86_64.so
libQt6Quick3DUtils_x86_64.so
libQt6QuickControls2_x86_64.so
libQt6QuickControls2Impl_x86_64.so
libQt6QuickDialogs2_x86_64.so
libQt6QuickDialogs2QuickImpl_x86_64.so
libQt6QuickDialogs2Utils_x86_64.so
libQt6QuickLayouts_x86_64.so
libQt6QuickParticles_x86_64.so
libQt6QuickShapes_x86_64.so
libQt6QuickTemplates2_x86_64.so
libQt6QuickTest_x86_64.so
libQt6QuickTimeline_x86_64.so
libQt6QuickWidgets_x86_64.so
libQt6RemoteObjects_x86_64.so
libQt6RemoteObjectsQml_x86_64.so
libQt6Scxml_x86_64.so
libQt6ScxmlQml_x86_64.so
libQt6Sensors_x86_64.so
libQt6SensorsQuick_x86_64.so
libQt6SerialBus_x86_64.so
libQt6SerialPort_x86_64.so
libQt6ShaderTools_x86_64.so
libQt6Sql_x86_64.so
libQt6StateMachine_x86_64.so
libQt6StateMachineQml_x86_64.so
libQt6Svg_x86_64.so
libQt6SvgWidgets_x86_64.so
libQt6Test_x86_64.so
libQt6UiTools_x86_64.so
libQt6VirtualKeyboard_x86_64.so
libQt6WebChannel_x86_64.so
libQt6WebSockets_x86_64.so
libQt6WebView_x86_64.so
libQt6WebViewQuick_x86_64.so
libQt6Widgets_x86_64.so
libQt6Xml_x86_64.so
libQt63DAnimation_x86_64.so
libQt63DCore_x86_64.so
libQt63DExtras_x86_64.so
libQt63DInput_x86_64.so
libQt63DLogic_x86_64.so
libQt63DQuick_x86_64.so
libQt63DQuickAnimation_x86_64.so
libQt63DQuickExtras_x86_64.so
libQt63DQuickInput_x86_64.so
libQt63DQuickRender_x86_64.so
libQt63DQuickScene2D_x86_64.so
libQt63DRender_x86_64.so

I probably realized that I use wrong NDK version and the correct one is 22.1.7171670 and API level 23, so I finally I used the following configuration:

set "CMAKE_ROOT=E:\PFiles\cmake-3.21.3-windows-x86_64\bin"
set "NINJA_ROOT=E:\PFiles\ninja-win"
set "JDK_ROOT=C:\Program Files\Java\jdk1.8.0_301\bin"
set "MINGW_ROOT=E:\PFiles\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin"
set "PERL_ROOT=E:\PFiles\Strawberry\perl\bin"
    
set PATH=C:\WINDOWS\system32;C:\WINDOWS
set PATH=%CMAKE_ROOT%;%PATH%
set PATH=%NINJA_ROOT%;%PATH%
set PATH=%JDK_ROOT%;%PATH%
set PATH=%MINGW_ROOT%;%PATH%
set PATH=%PERL_ROOT%;%PATH%
set PATH=E:\PFiles\Python35;%PATH%
      
rem Check if the tools are in PATH
where gcc
where mingw32-make.exe
where perl.exe
where javac.exe
where python.exe
where cmake.exe
where ninja.exe
   
set "ANDROID_SDK_ROOT=C:\Users\D-Ef\AppData\Local\Android\Sdk"
set "ANDROID_NDK_PATH=C:\Users\D-Ef\AppData\Local\Android\Sdk\ndk\22.1.7171670"
set "ANDROID_BUILD_TOOLS_REVISION=31.0.0"
    
set MY_INSTALL_PATH=E:\Qt\Qt6.2.2\android
set QT_HOST_PATH=E:\Qt\Qt6.2.2\windows
   
configure.bat -platform win32-msvc -xplatform android-clang -prefix %MY_INSTALL_PATH% -qt-host-path %QT_HOST_PATH% ^
  -android-sdk %ANDROID_SDK_ROOT% -android-ndk %ANDROID_NDK_PATH% -android-ndk-platform android-23 -android-abis x86_64 ^
  -DQT_NO_EXCEPTIONS=1 -release -force-debug-info -opensource -confirm-license

It correctly defined ANDROID_PLATFORM=android-23:

+ cd qtbase
+ E:\repos\qt-everywhere-src-6.2.2\qtbase\configure.bat -top-level -platform win32-msvc -xplatform android-clang -prefix E:\Qt\Qt6.2.2\android -qt-host-path E:\Qt\Qt6.2.2\windows   -android-sdk C:\Users\D-Ef\AppData\Local\Android\Sdk -android-ndk C:\Users\D-Ef\AppData\Local\Android\Sdk\ndk\22.1.7171670 -android-ndk-platform android-23 -android-abis x86_64   -DQT_NO_EXCEPTIONS=1 -release -force-debug-info -opensource -confirm-license
'E:/PFiles/cmake-3.21.3-windows-x86_64/bin/cmake.exe' '-DQT_HOST_PATH=E://Qt//Qt6.2.2//windows' '-DCMAKE_INSTALL_PREFIX=E://Qt//Qt6.2.2//android' '-DQT_QMAKE_TARGET_MKSPEC=win32-msvc' '-DQT_QMAKE_TARGET_MKSPEC=android-clang' '-DCMAKE_C_COMPILER=cl' '-DCMAKE_CXX_COMPILER=cl' '-DANDROID_SDK_ROOT=C://Users//D-Ef//AppData//Local//Android//Sdk' '-DANDROID_NDK_ROOT=C://Users//D-Ef//AppData//Local//Android//Sdk//ndk//22.1.7171670' '-DANDROID_NATIVE_API_LEVEL=23' '-DANDROID_ABI=x86_64' '-DCMAKE_BUILD_TYPE=RelWithDebInfo' '-DQT_EXTRA_DEFINES=QT_NO_EXCEPTIONS=1' '-G' 'Ninja' 'E:/repos/qt-everywhere-src-6.2.2'
-- Android toolchain file within NDK detected: C://Users//D-Ef//AppData//Local//Android//Sdk//ndk//22.1.7171670/build/cmake/android.toolchain.cmake
-- Android build detected, checking configuration defaults...
-- The CXX compiler identification is Clang 11.0.5
-- The C compiler identification is Clang 11.0.5
-- The ASM compiler identification is Clang
-- Found assembler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
Checking dependencies of 'qtbase'
Checking dependencies of 'qtshadertools'
Checking dependencies of 'qtsvg'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qt3d'
Checking dependencies of 'qt5compat'
Checking dependencies of 'qtactiveqt'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qtcharts'
Checking dependencies of 'qtcoap'
Checking dependencies of 'qtconnectivity'
Checking dependencies of 'qtdatavis3d'
Checking dependencies of 'qttools'
Checking dependencies of 'qtdoc'
Checking dependencies of 'qtlottie'
Checking dependencies of 'qtmqtt'
Checking dependencies of 'qtnetworkauth'
Checking dependencies of 'qtopcua'
Checking dependencies of 'qtserialport'
Checking dependencies of 'qtpositioning'
Checking dependencies of 'qtquicktimeline'
Checking dependencies of 'qtquick3d'
Checking dependencies of 'qtremoteobjects'
Checking dependencies of 'qtscxml'
Checking dependencies of 'qtsensors'
Checking dependencies of 'qtserialbus'
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtvirtualkeyboard'
Checking dependencies of 'qtwayland'
Checking dependencies of 'qtwebsockets'
Checking dependencies of 'qtwebchannel'
Checking dependencies of 'qtwebengine'
Checking dependencies of 'qtwebview'
Configuring 'qtbase'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Java: C:/Program Files/Java/jdk1.8.0_301/bin/java.exe (found suitable version "1.8.0.301", minimum required is "1.8") found components: Development
-- Check for feature set changes
-- Building architecture extraction project with the following CMake arguments:
    -DANDROID_ABI=x86_64
    -DANDROID_ARM_MODE=thumb
    -DANDROID_PIE=TRUE
    -DANDROID_PLATFORM=android-23
    -DANDROID_STL=c++_shared
    -DANDROID_TOOLCHAIN=clang
    -DCMAKE_OBJCOPY=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe
    -DCMAKE_TOOLCHAIN_FILE=C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/build/cmake/android.toolchain.cmake
    -DCMAKE_C_STANDARD=11
    -DCMAKE_CXX_STANDARD=17
    -DCMAKE_MODULE_PATH:STRING=E:/repos/qt-everywhere-src-6.2.2/qtbase/cmake/platforms
-- Extracting architecture info from E:/repos/qt-everywhere-src-6.2.2/qtbase/config.tests/arch/architecture_test.
-- Performing Test HAVE_LD_VERSION_SCRIPT
-- Performing Test HAVE_LD_VERSION_SCRIPT - Success
-- CMAKE_VERSION: "3.21.3"
-- CMAKE_HOST_SYSTEM: "Windows-10.0.19043"
-- CMAKE_HOST_SYSTEM_NAME: "Windows"
-- CMAKE_HOST_SYSTEM_VERSION: "10.0.19043"
-- CMAKE_HOST_SYSTEM_PROCESSOR: "AMD64"
-- CMAKE_SYSTEM: "Android"
-- CMAKE_SYSTEM_NAME: "Android"
-- CMAKE_SYSTEM_VERSION: "1"
-- CMAKE_SYSTEM_PROCESSOR: "x86_64"
-- CMAKE_CROSSCOMPILING: "TRUE"
-- CMAKE_C_COMPILER: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe" (11.0.5)
-- CMAKE_CXX_COMPILER: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe" (11.0.5)
-- ANDROID_TOOLCHAIN: "clang"
-- ANDROID_NDK: "C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670"
-- ANDROID_ABI: "x86_64"
-- ANDROID_PLATFORM: "android-23"
-- ANDROID_STL: "c++_shared"
-- ANDROID_PIE: "TRUE"
-- ANDROID_CPP_FEATURES: ""
-- ANDROID_ALLOW_UNDEFINED_SYMBOLS: ""
-- ANDROID_ARM_MODE: "thumb"
-- ANDROID_ARM_NEON: ""
-- ANDROID_DISABLE_FORMAT_STRING_CHECKS: ""
-- ANDROID_NATIVE_API_LEVEL: "23"
-- ANDROID_LLVM_TRIPLE: "x86_64-none-linux-android23"
-- Found ZLIB: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android/libz.a (found suitable version "1.2.11", minimum required is "1.0.8")
-- Found WrapZLIB: TRUE (Required is at least version "1.0.8")
-- Could NOT find ZSTD: Found unsuitable version "", but required is at least "1.3" (found ZSTD_LIBRARY-NOTFOUND)
-- Could NOT find WrapDBus1 (missing: DBus1_LIBRARY DBus1_INCLUDE_DIR WrapDBus1_FOUND) (Required is at least version "1.2")
-- Performing Test HAVE_cxx14
-- Performing Test HAVE_cxx14 - Success
-- Performing Test HAVE_cxx17
-- Performing Test HAVE_cxx17 - Success
-- Performing Test HAVE_cxx20
-- Performing Test HAVE_cxx20 - Success
-- Performing Test precompiled header support
-- Performing Test precompiled header support - Success
-- Performing Test TEST_use_bfd_linker
-- Performing Test TEST_use_bfd_linker - Success
-- Performing Test TEST_use_gold_linker
-- Performing Test TEST_use_gold_linker - Success
-- Performing Test TEST_use_lld_linker
-- Performing Test TEST_use_lld_linker - Success
-- Performing Test TEST_optimize_debug
-- Performing Test TEST_optimize_debug - Success
-- Performing Test TEST_enable_new_dtags
-- Performing Test TEST_enable_new_dtags - Success
-- Performing Test TEST_gdb_index
-- Performing Test TEST_gdb_index - Success
-- Performing Test HAVE_reduce_relocations
-- Performing Test HAVE_reduce_relocations - Success
-- Performing Test separate debug information support
-- Performing Test separate debug information support - Success
-- Performing Test HAVE_signaling_nan
-- Performing Test HAVE_signaling_nan - Success
-- Performing SIMD Test SSE2 instructions
-- Performing SIMD Test SSE2 instructions - Success
-- Performing SIMD Test SSE3 instructions
-- Performing SIMD Test SSE3 instructions - Success
-- Performing SIMD Test SSSE3 instructions
-- Performing SIMD Test SSSE3 instructions - Success
-- Performing SIMD Test SSE4.1 instructions
-- Performing SIMD Test SSE4.1 instructions - Success
-- Performing SIMD Test SSE4.2 instructions
-- Performing SIMD Test SSE4.2 instructions - Success
-- Performing SIMD Test AES new instructions
-- Performing SIMD Test AES new instructions - Success
-- Performing SIMD Test F16C instructions
-- Performing SIMD Test F16C instructions - Success
-- Performing SIMD Test RDRAND instruction
-- Performing SIMD Test RDRAND instruction - Success
-- Performing SIMD Test RDSEED instruction
-- Performing SIMD Test RDSEED instruction - Success
-- Performing SIMD Test SHA new instructions
-- Performing SIMD Test SHA new instructions - Success
-- Performing SIMD Test AVX instructions
-- Performing SIMD Test AVX instructions - Success
-- Performing SIMD Test AVX2 instructions
-- Performing SIMD Test AVX2 instructions - Success
-- Performing SIMD Test AVX512 F instructions
-- Performing SIMD Test AVX512 F instructions - Success
-- Performing SIMD Test AVX512 ER instructions
-- Performing SIMD Test AVX512 ER instructions - Success
-- Performing SIMD Test AVX512 CD instructions
-- Performing SIMD Test AVX512 CD instructions - Success
-- Performing SIMD Test AVX512 PF instructions
-- Performing SIMD Test AVX512 PF instructions - Success
-- Performing SIMD Test AVX512 DQ instructions
-- Performing SIMD Test AVX512 DQ instructions - Success
-- Performing SIMD Test AVX512 BW instructions
-- Performing SIMD Test AVX512 BW instructions - Success
-- Performing SIMD Test AVX512 VL instructions
-- Performing SIMD Test AVX512 VL instructions - Success
-- Performing SIMD Test AVX512 IFMA instructions
-- Performing SIMD Test AVX512 IFMA instructions - Success
-- Performing SIMD Test AVX512 VBMI instructions
-- Performing SIMD Test AVX512 VBMI instructions - Success
-- Performing Test HAVE_posix_fallocate
-- Performing Test HAVE_posix_fallocate - Success
-- Performing Test HAVE_alloca_stdlib_h
-- Performing Test HAVE_alloca_stdlib_h - Success
-- Performing Test HAVE_alloca_h
-- Performing Test HAVE_alloca_h - Success
-- Performing Test HAVE_alloca_malloc_h
-- Performing Test HAVE_alloca_malloc_h - Failed
-- Performing Test HAVE_stack_protector
-- Performing Test HAVE_stack_protector - Success
-- Performing Test HAVE_intelcet
-- Performing Test HAVE_intelcet - Failed
-- Looking for backtrace
-- Looking for backtrace - not found
-- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "66.1")
-- Performing Test HAVE_STDATOMIC
-- Performing Test HAVE_STDATOMIC - Success
-- Found WrapAtomic: TRUE
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Performing Test HAVE_GETTIME
-- Performing Test HAVE_GETTIME - Success
-- Found WrapRt: TRUE
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_atomicfptr
-- Performing Test HAVE_atomicfptr - Success
-- Performing Test HAVE_clock_monotonic
-- Performing Test HAVE_clock_monotonic - Success
-- Performing Test HAVE_cloexec
-- Performing Test HAVE_cloexec - Success
-- Performing Test HAVE_cxx11_future
-- Performing Test HAVE_cxx11_future - Success
-- Performing Test HAVE_cxx11_random
-- Performing Test HAVE_cxx11_random - Success
-- Performing Test HAVE_cxx17_filesystem
-- Performing Test HAVE_cxx17_filesystem - Success
-- Performing Test HAVE_eventfd
-- Performing Test HAVE_eventfd - Success
-- Performing Test HAVE_futimens
-- Performing Test HAVE_futimens - Success
-- Performing Test HAVE_futimes
-- Performing Test HAVE_futimes - Failed
-- Performing Test HAVE_getauxval
-- Performing Test HAVE_getauxval - Success
-- Performing Test HAVE_getentropy
-- Performing Test HAVE_getentropy - Failed
-- Performing Test HAVE_glibc
-- Performing Test HAVE_glibc - Failed
-- Performing Test HAVE_inotify
-- Performing Test HAVE_inotify - Success
-- Performing Test HAVE_ipc_sysv
-- Performing Test HAVE_ipc_sysv - Failed
-- Performing Test HAVE_ipc_posix
-- Performing Test HAVE_ipc_posix - Failed
-- Performing Test HAVE_linkat
-- Performing Test HAVE_linkat - Success
-- Performing Test HAVE_ppoll
-- Performing Test HAVE_ppoll - Success
-- Performing Test HAVE_pollts
-- Performing Test HAVE_pollts - Failed
-- Performing Test HAVE_poll
-- Performing Test HAVE_poll - Success
-- Performing Test HAVE_renameat2
-- Performing Test HAVE_renameat2 - Failed
-- Performing Test HAVE_statx
-- Performing Test HAVE_statx - Failed
-- Performing Test HAVE_syslog
-- Performing Test HAVE_syslog - Success
-- Performing Test HAVE_xlocalescanprint
-- Performing Test HAVE_xlocalescanprint - Failed
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Performing Test HAVE_getifaddrs
-- Performing Test HAVE_getifaddrs - Failed
-- Performing Test HAVE_ifr_index
-- Performing Test HAVE_ifr_index - Failed
-- Performing Test HAVE_ipv6ifname
-- Performing Test HAVE_ipv6ifname - Failed
-- Performing Test HAVE_linux_netlink
-- Performing Test HAVE_linux_netlink - Success
-- Performing Test HAVE_sctp
-- Performing Test HAVE_sctp - Failed
-- Performing Test HAVE_networklistmanager
-- Performing Test HAVE_networklistmanager - Failed
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Performing Test HAVE_EGL
-- Performing Test HAVE_EGL - Success
-- Found EGL: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include (found version "1.5")
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Performing Test HAVE_GLESv2
-- Performing Test HAVE_GLESv2 - Success
-- Found GLESv2: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include
-- Found WrapVulkanHeaders: C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include
-- Performing Test HAVE_egl_brcm
-- Performing Test HAVE_egl_brcm - Failed
-- Performing Test HAVE_egl_egldevice
-- Performing Test HAVE_egl_egldevice - Success
-- Performing Test HAVE_egl_mali
-- Performing Test HAVE_egl_mali - Failed
-- Performing Test HAVE_egl_mali_2
-- Performing Test HAVE_egl_mali_2 - Failed
-- Performing Test HAVE_egl_viv
-- Performing Test HAVE_egl_viv - Failed
-- Performing Test HAVE_egl_openwfd
-- Performing Test HAVE_egl_openwfd - Failed
-- Performing Test HAVE_egl_rcar
-- Performing Test HAVE_egl_rcar - Failed
-- Performing Test HAVE_evdev
-- Performing Test HAVE_evdev - Success
-- Performing Test HAVE_integrityfb
-- Performing Test HAVE_integrityfb - Failed
-- Performing Test HAVE_linuxfb
-- Performing Test HAVE_linuxfb - Failed
-- Performing Test HAVE_opengles3
-- Performing Test HAVE_opengles3 - Failed
-- Performing Test HAVE_opengles31
-- Performing Test HAVE_opengles31 - Failed
-- Performing Test HAVE_opengles32
-- Performing Test HAVE_opengles32 - Failed
-- Performing Test HAVE_directwrite
-- Performing Test HAVE_directwrite - Failed
-- Performing Test HAVE_directwrite3
-- Performing Test HAVE_directwrite3 - Failed
-- Performing Test HAVE_d2d1
-- Performing Test HAVE_d2d1 - Failed
-- Performing Test HAVE_d2d1_1
-- Performing Test HAVE_d2d1_1 - Failed
-- Searching for tool 'Qt6::moc' in package Qt6CoreTools.
-- Qt6::moc was found at E:/Qt/Qt6.2.2/windows/./bin/moc.exe using package Qt6CoreTools.
-- Tool 'Qt6::rcc' was found at E:/Qt/Qt6.2.2/windows/./bin/rcc.exe.
-- Tool 'Qt6::tracegen' was found at E:/Qt/Qt6.2.2/windows/./bin/tracegen.exe.
-- Tool 'Qt6::cmake_automoc_parser' was found at E:/Qt/Qt6.2.2/windows/./bin/cmake_automoc_parser.exe.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Using Qt bundled PCRE2.
-- Found WrapPCRE2: TRUE
-- Using source syncqt found at: E:/repos/qt-everywhere-src-6.2.2/qtbase/libexec/syncqt.pl
-- Running syncqt for module: 'QtCore'
-- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find WrapDoubleConversion (missing: WrapDoubleConversion_FOUND)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "66.1")
-- Could NOT find Libb2 (missing: LIBB2_LIBRARY LIBB2_INCLUDE_DIR)
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found) (Required is at least version "10.20")
-- Could NOT find Slog2 (missing: Slog2_INCLUDE_DIR Slog2_LIBRARY)
-- Performing Test HAVE_DASH_UNDEFINED_SYMBOLS
-- Performing Test HAVE_DASH_UNDEFINED_SYMBOLS - Success
-- Performing Test HAVE_DASH_DASH_NO_UNDEFINED
-- Performing Test HAVE_DASH_DASH_NO_UNDEFINED - Success
CMake Warning at qtbase/src/corelib/CMakeLists.txt:1230 (message):
  xmlstarlet was not found.  freedesktop.org.xml will not be minified!


-- Running syncqt for module: 'QtConcurrent'
-- Running syncqt for module: 'QtSql'
-- Running syncqt for module: 'QtNetwork'
-- Could NOT find WrapBrotli (missing: BrotliDec_FOUND BrotliEnc_FOUND BrotliCommon_FOUND)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR)
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
-- Could NOT find GSSAPI (missing: GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIRS)
-- Running syncqt for module: 'QtXml'
-- Searching for tool 'Qt6::uic' in package Qt6WidgetsTools.
-- Qt6::uic was found at E:/Qt/Qt6.2.2/windows/./bin/uic.exe using package Qt6WidgetsTools.
-- Tool 'Qt6::qlalr' was found at E:/Qt/Qt6.2.2/windows/./bin/qlalr.exe.
-- Tool 'Qt6::qvkgen' was found at E:/Qt/Qt6.2.2/windows/./bin/qvkgen.exe.
-- Tool 'Qt6::qtpaths' was found at E:/Qt/Qt6.2.2/windows/bin/qtpaths.exe.
-- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
-- Using Qt bundled Harfbuzz.
-- Found WrapHarfbuzz: TRUE
-- Using Qt bundled PNG.
-- Found WrapPNG: TRUE
-- Using Qt bundled Freetype.
-- Found WrapFreetype: TRUE
-- Running syncqt for module: 'QtGui'
-- Could NOT find Libdrm (missing: Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
-- Could NOT find WrapSystemFreetype (missing: __freetype_found) (Required is at least version "2.2.0")
-- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY Fontconfig_INCLUDE_DIR)
-- Could NOT find gbm (missing: gbm_LIBRARY gbm_INCLUDE_DIR)
-- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES HARFBUZZ_INCLUDE_DIRS) (Required is at least version "2.6.0")
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find WrapSystemPNG (missing: __png_found)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Could NOT find WrapOpenGL (missing: WrapOpenGL_FOUND)
-- Running syncqt for module: 'QtOpenGL'
-- Running syncqt for module: 'QtWidgets'
-- Running syncqt for module: 'QtOpenGLWidgets'
-- Running syncqt for module: 'QtDeviceDiscoverySupport'
-- Running syncqt for module: 'QtFbSupport'
-- Could NOT find Libinput (missing: Libinput_LIBRARY Libinput_INCLUDE_DIR)
-- Could NOT find XKB (missing: XKB_LIBRARY XKB_INCLUDE_DIR)
-- Running syncqt for module: 'QtInputSupport'
-- Running syncqt for module: 'QtTest'
-- Running syncqt for module: 'QtPrintSupport'
-- Could NOT find Cups (missing: CUPS_LIBRARIES CUPS_INCLUDE_DIR)
-- Could NOT find DB2 (missing: DB2_INCLUDE_DIR DB2_LIBRARY)
-- Could NOT find MySQL (missing: MySQL_LIBRARY MySQL_INCLUDE_DIR)
-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR)
-- Could NOT find Oracle (missing: Oracle_LIBRARY Oracle_INCLUDE_DIR)
-- Could NOT find ODBC (missing: ODBC_LIBRARY ODBC_INCLUDE_DIR)
-- Could NOT find SQLite3 (missing: SQLite3_INCLUDE_DIR SQLite3_LIBRARY)
-- Could NOT find Interbase (missing: Interbase_LIBRARY Interbase_INCLUDE_DIR)
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
Configuring 'qtshadertools'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtShaderTools'
-- Searching for tool 'Qt6::qsb' in package Qt6ShaderToolsTools.
-- Qt6::qsb was found at E:/Qt/Qt6.2.2/windows/bin/qsb.exe using package Qt6ShaderToolsTools.
Configuring 'qtsvg'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSvg'
-- Running syncqt for module: 'QtSvgWidgets'
Configuring 'qtimageformats'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
-- Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
-- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
-- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
Configuring 'qtdeclarative'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found PythonInterp: E:/PFiles/Python35/python.exe (found version "3.5.4")
-- Searching for tool 'Qt6::qmltyperegistrar' in package Qt6QmlTools.
-- Qt6::qmltyperegistrar was found at E:/Qt/Qt6.2.2/windows/./bin/qmltyperegistrar.exe using package Qt6QmlTools.
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Performing Test HAVE_pointer_32bit
-- Performing Test HAVE_pointer_32bit - Failed
-- Performing Test HAVE_pointer_64bit
-- Performing Test HAVE_pointer_64bit - Success
-- Performing Test HAVE_arm_thumb
-- Performing Test HAVE_arm_thumb - Failed
-- Performing Test HAVE_arm_fp
-- Performing Test HAVE_arm_fp - Success
-- Running syncqt for module: 'QtQml'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQmlModels'
-- Running syncqt for module: 'QtQmlCore'
-- Running syncqt for module: 'QtQmlWorkerScript'
-- Running syncqt for module: 'QtQmlLocalStorage'
-- Running syncqt for module: 'QtQmlXmlListModel'
-- Running syncqt for module: 'QtQuick'
-- Could NOT find LTTngUST (missing: LTTNGUST_LIBRARIES LTTNGUST_INCLUDE_DIRS)
-- Running syncqt for module: 'QtQuickShapes'
-- Running syncqt for module: 'QtQuickLayouts'
-- Running syncqt for module: 'QtQuickTest'
-- Running syncqt for module: 'QtQuickTestUtils'
-- Running syncqt for module: 'QtQuickParticles'
-- Running syncqt for module: 'QtQuickWidgets'
-- Running syncqt for module: 'QtQuickTemplates2'
-- Running syncqt for module: 'QtQuickControls2Impl'
-- Running syncqt for module: 'QtQuickControls2'
-- Running syncqt for module: 'QtQuickDialogs2Utils'
-- Running syncqt for module: 'QtQuickDialogs2QuickImpl'
-- Running syncqt for module: 'QtQuickDialogs2'
-- Running syncqt for module: 'QtQuickControlsTestUtils'
-- Running syncqt for module: 'QtLabsSettings'
-- Running syncqt for module: 'QtLabsQmlModels'
-- Running syncqt for module: 'QtLabsFolderListModel'
-- Running syncqt for module: 'QtLabsAnimation'
-- Running syncqt for module: 'QtLabsWavefrontMesh'
-- Running syncqt for module: 'QtLabsSharedImage'
-- Running syncqt for module: 'QtPacketProtocol'
-- Running syncqt for module: 'QtQmlDom'
-- Running syncqt for module: 'QtQmlCompiler'
-- Tool 'Qt6::qmlcachegen' was found at E:/Qt/Qt6.2.2/windows/./bin/qmlcachegen.exe.
-- Running syncqt for module: 'QtQmlDebug'
-- Tool 'Qt6::qmldom' was found at E:/Qt/Qt6.2.2/windows/bin/qmldom.exe.
-- Tool 'Qt6::qmllint' was found at E:/Qt/Qt6.2.2/windows/bin/qmllint.exe.
-- Tool 'Qt6::qmlimportscanner' was found at E:/Qt/Qt6.2.2/windows/./bin/qmlimportscanner.exe.
-- Tool 'Qt6::qmlformat' was found at E:/Qt/Qt6.2.2/windows/bin/qmlformat.exe.
Configuring 'qt3d'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'Qt3DCore'
-- Could NOT find WrapQt3DAssimp (missing: WrapQt3DAssimp_FOUND) (Required is at least version "5")
-- Performing Test
-- Performing Test  - Failed
-- Running syncqt for module: 'Qt3DLogic'
-- Running syncqt for module: 'Qt3DInput'
-- Running syncqt for module: 'Qt3DRender'
-- Could NOT find Vulkan (missing: Vulkan_LIBRARY)
-- Running syncqt for module: 'Qt3DExtras'
-- Running syncqt for module: 'Qt3DAnimation'
-- Running syncqt for module: 'Qt3DQuick'
-- Running syncqt for module: 'Qt3DQuickRender'
-- Running syncqt for module: 'Qt3DQuickScene2D'
-- Running syncqt for module: 'Qt3DQuickExtras'
-- Running syncqt for module: 'Qt3DQuickInput'
-- Running syncqt for module: 'Qt3DQuickAnimation'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/render/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene3d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/extras/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/scene2d/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/input/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/logic/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt3d/src/quick3d/imports/animation/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Performing Test Autodesk FBX
-- Performing Test Autodesk FBX - Failed
Configuring 'qt5compat'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCore5Compat'
-- Found the following ICU libraries:
--   i18n (required)
--   uc (required)
--   data (required)
-- Failed to find all ICU components (missing: ICU_LIBRARY) (found version "66.1")
-- Performing Test HAVE_ICONV
-- Performing Test HAVE_ICONV - Failed
-- Performing Test HAVE_ICONV_WITH_LIB
-- Performing Test HAVE_ICONV_WITH_LIB - Failed
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qt5compat/src/imports/graphicaleffects5/CMakeLists.txt:25 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtactiveqt'
Condition "WIN32" is not met, enabling documentation build only.
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
Configuring 'qtmultimedia'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtMultimedia'
QtMultimedia: created deprecated header(s) { qtmultimediadefs.h }
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Could NOT find AVFoundation (missing: AVFoundation_LIBRARY)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find GLIB2 (missing: GLIB2_LIBRARIES GTHREAD2_LIBRARIES GLIB2_INCLUDE_DIRS)
-- Could NOT find WrapPulseAudio (missing: PULSEAUDIO_LIBRARY PULSEAUDIO_INCLUDE_DIR WrapPulseAudio_FOUND)
-- Could NOT find WMF (missing: WMF_STRMIIDS_LIBRARY WMF_AMSTRMID_LIBRARY WMF_DMOGUIDS_LIBRARY WMF_UUID_LIBRARY WMF_MSDMO_LIBRARY WMF_OLE32_LIBRARY WMF_OLEAUT32_LIBRARY WMF_MF_LIBRARY WMF_MFUUID_LIBRARY WMF_MFPLAT_LIBRARY WMF_MFCORE_LIBRARY WMF_PROPSYS_LIBRARY)
-- Performing Test evr.h
-- Performing Test evr.h - Failed
-- Performing Test Vivante GPU
-- Performing Test Vivante GPU - Failed
-- Performing Test Video for Linux
-- Performing Test Video for Linux - Success
-- Performing Test wmsdk.h
-- Performing Test wmsdk.h - Failed
-- Performing Test HAVE_linux_dmabuf
-- Performing Test HAVE_linux_dmabuf - Failed
-- Running syncqt for module: 'QtMultimediaQuick'
-- Running syncqt for module: 'QtMultimediaWidgets'
Configuring 'qtcharts'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCharts'
-- Running syncqt for module: 'QtChartsQml'
Configuring 'qtcoap'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtCoap'
Configuring 'qtconnectivity'
-- Could NOT find Qt6DBus (missing: Qt6DBus_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "DBus".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtconnectivity/CMakeLists.txt:19 (find_package)


-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtBluetooth'
-- Performing Test BlueZ Low Energy
-- Performing Test BlueZ Low Energy - Failed
-- Performing Test Linux Crypto API
-- Performing Test Linux Crypto API - Success
-- Performing Test WinRT Bluetooth API
-- Performing Test WinRT Bluetooth API - Failed
-- Running syncqt for module: 'QtNfc'
CMake Warning at qtbase/cmake/QtPlatformAndroid.cmake:28 (message):
  Could not locate Android SDK jar for api 'android-21', defaulting to
  android-31
Call Stack (most recent call first):
  qtconnectivity/src/android/bluetooth/CMakeLists.txt:1 (qt_get_android_sdk_jar_for_api)


CMake Warning at qtbase/cmake/QtPlatformAndroid.cmake:28 (message):
  Could not locate Android SDK jar for api 'android-18', defaulting to
  android-31
Call Stack (most recent call first):
  qtconnectivity/src/android/nfc/CMakeLists.txt:1 (qt_get_android_sdk_jar_for_api)


Configuring 'qtdatavis3d'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtDataVisualization'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtdatavis3d/src/datavisualizationqml2/CMakeLists.txt:26 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qttools'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Running syncqt for module: 'QtTools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find WrapLibClang (missing: WrapLibClang_FOUND) (Required is at least version "8")
-- Searching for tool 'Qt6::lconvert' in package Qt6LinguistTools.
-- Qt6::lconvert was found at E:/Qt/Qt6.2.2/windows/bin/lconvert.exe using package Qt6LinguistTools.
-- Tool 'Qt6::lprodump' was found at E:/Qt/Qt6.2.2/windows/./bin/lprodump.exe.
-- Tool 'Qt6::lrelease' was found at E:/Qt/Qt6.2.2/windows/bin/lrelease.exe.
-- Tool 'Qt6::lrelease-pro' was found at E:/Qt/Qt6.2.2/windows/./bin/lrelease-pro.exe.
-- Tool 'Qt6::lupdate' was found at E:/Qt/Qt6.2.2/windows/bin/lupdate.exe.
-- Tool 'Qt6::lupdate-pro' was found at E:/Qt/Qt6.2.2/windows/./bin/lupdate-pro.exe.
-- Running syncqt for module: 'QtUiPlugin'
-- Running syncqt for module: 'QtUiTools'
-- Running syncqt for module: 'QtDesigner'
QtDesigner: WARNING: E:/repos/qt-everywhere-src-6.2.2/qttools/src/designer/src/lib/uilib/formbuilder.h includes abstractformbuilder.h when it should include QtDesigner/abstractformbuilder.h
QtDesigner: created deprecated header(s) { customwidget.h, QDesignerExportWidget, QDesignerCustomWidgetCollectionInterface, QDesignerCustomWidgetInterface, qdesignerexportwidget.h }
-- Running syncqt for module: 'QtDesignerComponents'
-- Running syncqt for module: 'QtHelp'
-- Searching for tool 'Qt6::qhelpgenerator' in package Qt6ToolsTools.
-- Qt6::qhelpgenerator was found at E:/Qt/Qt6.2.2/windows/bin/qhelpgenerator.exe using package Qt6ToolsTools.
-- Tool 'Qt6::qtattributionsscanner' was found at E:/Qt/Qt6.2.2/windows/./bin/qtattributionsscanner.exe.
Configuring 'qtdoc'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
Configuring 'qtlottie'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtBodymovin'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtlottie/src/imports/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtmqtt'
-- Could NOT find Qt6WebSockets (missing: Qt6WebSockets_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebSockets".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebSockets/Qt6WebSocketsConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtmqtt/CMakeLists.txt:20 (find_package)


-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtMqtt'
Configuring 'qtnetworkauth'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtNetworkAuth'
Configuring 'qtopcua'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtOpcUa'
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Could NOT find WrapOpenSSLHeaders (missing: OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Could NOT find WrapOpenSSL (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) (Required is at least version "1.1")
-- Performing Test HAVE_uacpp
-- Performing Test HAVE_uacpp - Failed
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but declarative_opcua sets PUBLIC_LIBRARIES to the following
  value:

      Qt::Core;Qt::Gui;Qt::OpcUa;Qt::Quick

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:220 (qt_internal_add_plugin)
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtopcua/src/imports/opcua/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtserialport'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSerialPort'
-- Performing Test HAVE_ntddmodm
-- Performing Test HAVE_ntddmodm - Failed
Configuring 'qtpositioning'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtPositioning'
-- Performing Test WinRT geolocation
-- Performing Test WinRT geolocation - Failed
-- Running syncqt for module: 'QtPositioningQuick'
Configuring 'qtquicktimeline'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtQuickTimeline'
Configuring 'qtquick3d'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtQuick3DUtils'
-- Running syncqt for module: 'QtQuick3DAssetImport'
-- Running syncqt for module: 'QtQuick3DRuntimeRender'
-- Running syncqt for module: 'QtQuick3D'
-- Running syncqt for module: 'QtQuick3DParticles'
-- Running syncqt for module: 'QtQuick3DAssetUtils'
QtQuick3DAssetUtils: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtquick3d/src/assetutils/qquick3druntimeloader_p.h does not have the "We mean it." warning
-- Running syncqt for module: 'QtQuick3DHelpers'
-- Running syncqt for module: 'QtQuick3DIblBaker'
-- Searching for tool 'Qt6::balsam' in package Qt6Quick3DTools.
-- Qt6::balsam was found at E:/Qt/Qt6.2.2/windows/bin/balsam.exe using package Qt6Quick3DTools.
-- Tool 'Qt6::balsamui' was found at E:/Qt/Qt6.2.2/windows/bin/balsamui.exe.
-- Tool 'Qt6::meshdebug' was found at E:/Qt/Qt6.2.2/windows/bin/meshdebug.exe.
-- Tool 'Qt6::shadergen' was found at E:/Qt/Qt6.2.2/windows/bin/shadergen.exe.
-- Tool 'Qt6::instancer' was found at E:/Qt/Qt6.2.2/windows/bin/instancer.exe.
Configuring 'qtremoteobjects'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtRepParser'
-- Running syncqt for module: 'QtRemoteObjects'
-- Running syncqt for module: 'QtRemoteObjectsQml'
-- Searching for tool 'Qt6::repc' in package Qt6RemoteObjectsTools.
-- Qt6::repc was found at E:/Qt/Qt6.2.2/windows/./bin/repc.exe using package Qt6RemoteObjectsTools.
Configuring 'qtscxml'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtScxml'
-- Running syncqt for module: 'QtStateMachine'
-- Running syncqt for module: 'QtStateMachineQml'
-- Running syncqt for module: 'QtScxmlQml'
-- Searching for tool 'Qt6::qscxmlc' in package Qt6ScxmlTools.
-- Qt6::qscxmlc was found at E:/Qt/Qt6.2.2/windows/bin/qscxmlc.exe using package Qt6ScxmlTools.
Configuring 'qtsensors'
-- Could NOT find Qt6DBus (missing: Qt6DBus_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "DBus".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtsensors/CMakeLists.txt:14 (find_package)


-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSensors'
-- Running syncqt for module: 'QtSensorsQuick'
Configuring 'qtserialbus'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtSerialBus'
QtSerialBus: created deprecated header(s) { qserialbusglobal.h }
-- Performing Test Socket CAN
-- Performing Test Socket CAN - Success
-- Performing Test Socket CAN FD
-- Performing Test Socket CAN FD - Success
Configuring 'qttranslations'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
CMake Warning at qttranslations/translations/CMakeLists.txt:38 (message):
  Directory
  'E:/repos/qt-everywhere-src-6.2.2/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


CMake Warning at qttranslations/translations/CMakeLists.txt:45 (message):
  No source files located for qtlocation, skipping target creation
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:102 (add_ts_targets)


Configuring 'qtvirtualkeyboard'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- XCB: XFIXES requires XCB;RENDER;SHAPE
-- Could NOT find XCB_XCB (missing: XCB_XCB_LIBRARY XCB_XCB_INCLUDE_DIR) (found version "")
-- Could NOT find XCB_RENDER (missing: XCB_RENDER_LIBRARY XCB_RENDER_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_SHAPE (missing: XCB_SHAPE_LIBRARY XCB_SHAPE_INCLUDE_DIR XCB_XCB_FOUND) (found version "")
-- Could NOT find XCB_XFIXES (missing: XCB_XFIXES_LIBRARY XCB_XFIXES_INCLUDE_DIR XCB_XCB_FOUND XCB_RENDER_FOUND XCB_SHAPE_FOUND) (found version "")
-- Could NOT find XCB (missing: XCB_LIBRARIES XFIXES)
-- Running syncqt for module: 'QtVirtualKeyboard'
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find CerenceHwrAlphabetic (missing: CERENCE_HWR_ALPHABETIC_INCLUDE_DIRS)
-- Could NOT find CerenceHwrCjk (missing: CERENCE_HWR_CJK_INCLUDE_DIRS)
-- Could NOT find CerenceXt9 (missing: CERENCE_XT9_INCLUDE_DIRS)
-- Could NOT find MyScript (missing: MyScript_ROOT_DIR MyScript_VOIM_INCLUDE_DIR MyScript_VOIM_BINARY MyScript_Ink_BINARY MyScript_Prediction_BINARY MyScript_Text_BINARY MyScript_Engine_BINARY)
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/import/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/settings/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtvirtualkeyboard/src/styles/CMakeLists.txt:5 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwayland'
Skipping the build as the condition "LINUX OR MACOS OR QNX" is not met.
Configuring 'qtwebsockets'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebSockets'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:1 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebchannel'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Running syncqt for module: 'QtWebChannel'
CMake Warning (dev) at qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:386 (message):
  INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
  Please port your module to use declarative type registration.
Call Stack (most recent call first):
  qtwebchannel/src/imports/webchannel/CMakeLists.txt:7 (qt_internal_add_qml_module)
This warning is for project developers.  Use -Wno-dev to suppress it.

Configuring 'qtwebengine'
-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms
-- Found Ninja: E:/PFiles/ninja-win/ninja.exe (found suitable version "1.10.2", minimum required is "1.7.2")
-- Could NOT find Gn (missing: Gn_EXECUTABLE) (Required is exact version "6.2.2")
-- Could NOT find Python2 (missing: Python2_EXECUTABLE Interpreter) (Required is at least version "2.7.5")
    Reason given by package:
        Interpreter: Wrong major version for the interpreter "E:/PFiles/Python35/python.exe"

-- Could NOT find GPerf (missing: GPerf_EXECUTABLE)
-- Could NOT find BISON (missing: BISON_EXECUTABLE)
-- Could NOT find FLEX (missing: FLEX_EXECUTABLE)
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find Snappy (missing: SNAPPY_LIBRARY SNAPPY_INCLUDE_DIR)
-- Could NOT find Nodejs: Found unsuitable version "", but required is at least "10.19" (found Nodejs_EXECUTABLE-NOTFOUND)
-- Performing Test HAVE_khr
-- Performing Test HAVE_khr - Success
-- Performing Test HAVE_winversion
-- Performing Test HAVE_winversion - Success
-- Support check for QtWebEngine failed: Build can be done only on Linux, Windows or macOS.
-- Support check for QtPdf failed: Build can be done only on Linux, Windows or macOS.
Configuring 'qtwebview'
-- Could NOT find Qt6WebEngineCore (missing: Qt6WebEngineCore_DIR)
CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineCore".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineCore/Qt6WebEngineCoreConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)

-- Could NOT find Qt6WebEngineQuick (missing: Qt6WebEngineQuick_DIR)

CMake Warning at qtbase/lib/cmake/Qt6/Qt6Config.cmake:226 (message):
  Failed to find Qt component "WebEngineQuick".

  Expected Config file at
  "E:/repos/qt-everywhere-src-6.2.2/qtbase/lib/cmake/Qt6WebEngineQuick/Qt6WebEngineQuickConfig.cmake"
  does NOT exist

Call Stack (most recent call first):
  qtwebview/CMakeLists.txt:12 (find_package)

-- Using Android SDK API android-31 from C://Users//D-Ef//AppData//Local//Android//Sdk/platforms

-- Running syncqt for module: 'QtWebView'
-- Running syncqt for module: 'QtWebViewQuick'
QtWebViewQuick: WARNING: E:/repos/qt-everywhere-src-6.2.2/qtwebview/src/quick/qtwebviewquickglobal_p.h does not have the "We mean it." warning
CMake Warning (dev) at qtbase/cmake/QtPluginHelpers.cmake:57 (message):
  Plugins are not intended to be linked to.  They should not have any public
  properties, but QAndroidWebViewPlugin sets PUBLIC_LIBRARIES to the
  following value:

      Qt::Core;Qt::Gui;Qt::WebViewPrivate

  Update your project to use LIBRARIES instead.

Call Stack (most recent call first):
  qtwebview/src/plugins/android/CMakeLists.txt:5 (qt_internal_add_plugin)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The following packages have been found:

 * QtBuildInternals
 * WrapZLIB (required version >= 1.0.8)
 * WrapPCRE2
 * WrapRt
 * WrapHarfbuzz
 * WrapPNG
 * WrapFreetype
 * ZLIB
 * PythonInterp
 * WrapIconv
 * Qt6CorePrivate (required version >= 6.2.2)
 * Qt6QmlDevToolsPrivate (required version >= 6.2.2)
 * Qt6ToolsTools (required version >= 6.2.2)
 * Qt6Sql (required version >= 6.2.2)
 * Qt6QmlXmlListModel (required version >= 6.2.2)
 * Qt6Concurrent (required version >= 6.2.2)
 * Qt6ShaderToolsTools (required version >= 6.2.2)
 * Qt6ShaderTools (required version >= 6.2.2)
 * Qt6QuickTimeline (required version >= 6.2.2)
 * Qt6Quick3DTools (required version >= 6.2.2)
 * Qt6RemoteObjectsTools (required version >= 6.2.2)
 * Qt6ScxmlTools (required version >= 6.2.2)
 * Qt6SerialPort (required version >= 6.2.2)
 * Qt6LinguistTools (required version >= 6.2.2)
 * Qt6Linguist (required version >= 6.2.2)
 * Qt6Svg (required version >= 6.2.2)
 * Qt6WidgetsTools (required version >= 6.2.2)
 * Qt6Widgets (required version >= 6.2.2)
 * Qt6PrintSupport (required version >= 6.2.2)
 * Qt6WebChannel (required version >= 6.2.2)
 * Qt6Positioning (required version >= 6.2.2)
 * Qt6QmlPrivate (required version >= 6.2.2)
 * Qt6QuickTemplates2Private (required version >= 6.2.2)
 * Qt6QuickControls2 (required version >= 6.2.2)
 * Qt6Test (required version >= 6.2.2)
 * Qt6OpenGLPrivate (required version >= 6.2.2)
 * Qt6QuickWidgets (required version >= 6.2.2)
 * Qt6QuickPrivate (required version >= 6.2.2)
 * Qt6QuickTest (required version >= 6.2.2)
 * Qt6WebSockets (required version >= 6.2.2)
 * Qt6UiPlugin (required version >= 6.2.2)
 * Qt6Xml (required version >= 6.2.2)
 * Qt6OpenGLWidgets (required version >= 6.2.2)
 * Qt6Designer (required version >= 6.2.2)
 * Ninja (required version >= 1.7.2), Build tool, <https://ninja-build.org/>
 * Qt6BuildInternals (required version >= 6.2.2)
 * WrapAtomic
 * Qt6CoreTools (required version >= 6.2.2)
 * Qt6Core (required version >= 6.2.2)
 * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
 * GLESv2
 * Qt6Gui (required version >= 6.2.2)
 * Qt6QmlTools (required version >= 6.2.2)
 * Qt6Network (required version >= 6.2.2)
 * Qt6Qml (required version >= 6.2.2)
 * Qt6QmlModels (required version >= 6.2.2)
 * Threads
 * WrapVulkanHeaders
 * Qt6OpenGL (required version >= 6.2.2)
 * Qt6Quick (required version >= 6.2.2)
 * Qt6 (required version >= 6.2.2)
 * Qt6HostInfo
 * Java (required version >= 1.8)

-- The following OPTIONAL packages have not been found:

 * zstd
 * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Backtrace
 * WrapBacktrace
 * double-conversion
 * WrapDoubleConversion
 * Libsystemd
 * Libb2
 * PCRE2 (required version >= 10.20)
 * WrapSystemPCRE2 (required version >= 10.20)
 * Slog2
 * unofficial-brotli
 * WrapBrotli
 * Libproxy
 * GSSAPI, Generic Security Services Application Program Interface
 * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
 * ATSPI2
 * DirectFB
 * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
 * Freetype (required version >= 2.2.0)
 * WrapSystemFreetype (required version >= 2.2.0)
 * Fontconfig
 * gbm, Mesa gbm library., <http://www.mesa3d.org>
 * harfbuzz (required version >= 2.6.0)
 * WrapSystemHarfbuzz (required version >= 2.6.0)
 * md4c
 * WrapSystemMd4c
 * PNG
 * WrapSystemPNG
 * OpenGL
 * WrapOpenGL
 * GTK3 (required version >= 3.6)
 * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
 * XKB, XKB API common to servers and clients., <http://xkbcommon.org>
 * Tslib
 * Mtdev
 * Cups
 * DB2, IBM DB2 client library, <https://www.ibm.com>
 * MySQL, MySQL client library, <https://www.mysql.com>
 * PostgreSQL
 * Oracle, Oracle client library, <https://www.oracle.com>
 * ODBC
 * SQLite3
 * Interbase, Interbase client library, <https://www.embarcadero.com/products/interbase>
 * JPEG
 * Jasper
 * WrapJasper
 * TIFF
 * WebP
 * WrapWebP
 * Libmng
 * LTTngUST
 * Qt6Gamepad (required version >= 6.2.2)
 * Qt6Multimedia (required version >= 6.2.2)
 * assimp (required version >= 5)
 * WrapQt3DAssimp (required version >= 5)
 * Vulkan
 * ICU
 * ALSA
 * AVFoundation
 * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
 * GObject
 * GStreamer
 * PulseAudio
 * WrapPulseAudio
 * WMF
 * BlueZ
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * Uacpp, The Unified Automation C++ OPC UA SDK, <https://www.unified-automation.com/products/server-sdk/c-ua-server-sdk.html>
 * OpenSSL (required version >= 1.1)
 * WrapOpenSSLHeaders (required version >= 1.1)
 * WrapOpenSSL (required version >= 1.1)
 * Libudev
 * Gypsy
 * Gconf
 * Qt6DBus (required version >= 6.2.2)
 * XCB, X protocol C-language Binding, <http://xcb.freedesktop.org>
 * Hunspell
 * CerenceHwrAlphabetic
 * CerenceHwrCjk
 * CerenceXt9
 * MyScript
 * Gn (required version == 6.2.2), Meta-build system, <https://gn.googlesource.com/gn/>
 * Python2 (required version >= 2.7.5)
 * GPerf, Perfect hash function generator, <https://www.gnu.org/software/gperf/>
 * BISON
 * FLEX
 * Snappy
 * Nodejs (required version >= 10.19), JavaScript runtime environment that runs on the V8 engine, <https://nodejs.org/>
 * PkgConfig
 * Qt6QmlCompilerPlus
 * Qt6WebEngineCore (required version >= 6.2.2)
 * Qt6WebEngineQuick (required version >= 6.2.2)

Configure summary:

Building for: android-clang (x86_64, CPU features: cx16 mmx popcnt sse sse2 sse3 ssse3 sse4.1 sse4.2 sse4)
Compiler: clang 11.0.5
Build options:
  Mode ................................... release (with debug info)
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. yes
  Using C standard ....................... C11
  Using C++ standard ..................... C++17
  Using ccache ........................... no
  Relocatable ............................ yes
  Using precompiled headers .............. yes
  Using LTCG ............................. no
  Target compiler supports:
    SSE .................................. SSE2 SSE3 SSSE3 SSE4.1 SSE4.2
    AVX .................................. <none>
    AVX512 ............................... <none>
    Other x86 ............................ AES RDRAND SHA
    Intrinsics without compiler architecture option  yes
  Sanitizers:
    Addresses ............................ no
    Threads .............................. no
    Memory ............................... no
    Fuzzer (instrumentation only) ........ no
    Undefined ............................ no
  Build parts ............................ libs
  App store compliance ................... yes
Qt modules and options:
  Qt Concurrent .......................... yes
  Qt D-Bus ............................... no
  Qt D-Bus directly linked to libdbus .... no
  Qt Gui ................................. yes
  Qt Network ............................. yes
  Qt PrintSupport ........................ yes
  Qt Sql ................................. yes
  Qt Testlib ............................. yes
  Qt Widgets ............................. yes
  Qt Xml ................................. yes
Support enabled for:
  Using pkg-config ....................... no
  udev ................................... no
  Using system zlib ...................... yes
  Zstandard support ...................... no
  Thread support ......................... yes
Common build options:
  Linker can resolve circular dependencies  yes
Qt Core:
  backtrace .............................. no
  DoubleConversion ....................... yes
    Using system DoubleConversion ........ no
  GLib ................................... no
  ICU .................................... no
  Using system libb2 ..................... no
  Built-in copy of the MIME database ..... yes
  Tracing backend ........................ <none>
  Logging backends:
    journald ............................. no
    syslog ............................... no
    slog2 ................................ no
  PCRE2 .................................. yes
    Using system PCRE2 ................... no
Qt Sql:
  SQL item models ........................ yes
Qt Network:
  getifaddrs() ........................... no
  IPv6 ifname ............................ no
  libproxy ............................... no
  OpenSSL ................................ no
    Qt directly linked to OpenSSL ........ no
  OpenSSL 1.1 ............................ no
  DTLS ................................... no
  OCSP-stapling .......................... no
  SCTP ................................... no
  Use system proxies ..................... yes
  GSSAPI ................................. no
  Brotli Decompression Support ........... no
Qt Gui:
  Accessibility .......................... yes
  FreeType ............................... yes
    Using system FreeType ................ no
  HarfBuzz ............................... yes
    Using system HarfBuzz ................ no
  Fontconfig ............................. no
  Image formats:
    GIF .................................. yes
    ICO .................................. yes
    JPEG ................................. yes
      Using system libjpeg ............... no
    PNG .................................. yes
      Using system libpng ................ no
  Text formats:
    HtmlParser ........................... yes
    CssParser ............................ yes
    OdfWriter ............................ yes
    MarkdownReader ....................... yes
      Using system libmd4c ............... no
    MarkdownWriter ....................... yes
  EGL .................................... yes
  OpenVG ................................. no
  OpenGL:
    Desktop OpenGL ....................... no
    OpenGL ES 2.0 ........................ yes
    OpenGL ES 3.0 ........................ no
    OpenGL ES 3.1 ........................ no
    OpenGL ES 3.2 ........................ no
  Vulkan ................................. yes
  Session Management ..................... yes
Features used by QPA backends:
  evdev .................................. yes
  libinput ............................... no
  INTEGRITY HID .......................... no
  mtdev .................................. no
  tslib .................................. no
  xkbcommon .............................. no
  X11 specific:
    XLib ................................. no
    XCB Xlib ............................. no
    EGL on X11 ........................... no
    xkbcommon-x11 ........................ no
    xcb-sm ............................... no
QPA backends:
  DirectFB ............................... no
  EGLFS .................................. no
  EGLFS details:
    EGLFS OpenWFD ........................ no
    EGLFS i.Mx6 .......................... no
    EGLFS i.Mx6 Wayland .................. no
    EGLFS RCAR ........................... no
    EGLFS EGLDevice ...................... no
    EGLFS GBM ............................ no
    EGLFS VSP2 ........................... no
    EGLFS Mali ........................... no
    EGLFS Raspberry Pi ................... no
    EGLFS X11 ............................ no
  LinuxFB ................................ no
  VNC .................................... no
  VK_KHR_display ......................... no
  QNX:
    lgmon ................................ no
    IMF .................................. no
  XCB:
    Using system-provided xcb-xinput ..... no
    GL integrations:
      GLX Plugin ......................... no
        XCB GLX .......................... no
      EGL-X11 Plugin ..................... no
  Windows:
    Direct 2D ............................ no
    Direct 2D 1.1 ........................ no
    DirectWrite .......................... no
    DirectWrite 3 ........................ no
Qt Widgets:
  GTK+ ................................... no
  Styles ................................. Fusion Windows Android
Qt Testlib:
  Tester for item models ................. yes
Qt PrintSupport:
  CUPS ................................... no
Qt Sql Drivers:
  DB2 (IBM) .............................. no
  InterBase .............................. no
  MySql .................................. no
  OCI (Oracle) ........................... no
  ODBC ................................... no
  PostgreSQL ............................. no
  SQLite ................................. yes
    Using system provided SQLite ......... no
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt QML:
  QML network support .................... yes
  QML debugging and profiling support .... yes
  QML just-in-time compiler .............. yes
  QML sequence object .................... yes
  QML XML http request ................... yes
  QML Locale ............................. yes
Qt QML Models:
  QML list model ......................... yes
  QML delegate model ..................... yes
Qt Quick:
  AnimatedImage item ..................... yes
  Canvas item ............................ yes
  Support for Qt Quick Designer .......... yes
  Flipable item .......................... yes
  GridView item .......................... yes
  ListView item .......................... yes
  TableView item ......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner items ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt 3D:
  Assimp ................................. yes
  System Assimp .......................... no
  Use SSE2 instructions .................. yes
  Use AVX2 instructions .................. no
  Aspects:
    Render aspect ........................ yes
    Input aspect ......................... yes
    Logic aspect ......................... yes
    Animation aspect ..................... yes
    Extras aspect ........................ yes
Qt 3D APIs:
  Vulkan ................................. no
Qt 3D Renderers:
  OpenGL Renderer ........................ yes
  RHI Renderer ........................... no
Qt3D Geometry Loaders:
  Autodesk FBX ........................... no
Qt 5 Compatibility Libraries:
  iconv .................................. no
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ yes
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... no
  Windows Media Foundation ............... no
Qt Charts Types:
  Area Chart ............................. yes
  Line Chart ............................. yes
  Spline Chart ........................... yes
  Scatter Chart .......................... yes
  Bar Chart .............................. yes
  Pie Chart .............................. yes
  Boxplot Chart .......................... yes
  Candlestick Chart ...................... yes
Qt Axis Types:
  DateTime Axis .......................... yes
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  Mac Deployment Tool .................... no
  pixeltool .............................. yes
  qdbus .................................. no
  Qt Attributions Scanner ................ yes
  qtdiag ................................. no
  qtplugininfo ........................... no
  Windows deployment tool ................ no
Qt Opcua:
  Open62541 .............................. yes
  Unified Automation C++ SDK ............. no
  Support for namespace 0 NodeId names ... yes
  Namespace 0 NodeIds generator .......... no
  Open62541 security support ............. no
  Support for global discovery server .... no
Serial Port:
  ntddmodm ............................... no
Qt Remote Objects:
  High Availability Manager (ham) ........ no
Qt Scxml:
  ECMAScript data model for QtScxml ...... yes
Qt Sensors:
Qt SerialBus:
  Socket CAN ............................. no
  Socket CAN FD .......................... no
  SerialPort Support ..................... yes
Qt Virtualkeyboard:
  Desktop integration .................... yes
  Built-in layouts ....................... yes
  Key navigation ......................... no
  Retro style as default ................. no
  Sensitive Debug ........................ no
  Cerence ................................ no
    Static Linking ....................... no
    Handwriting .......................... no
      Alphabetic ......................... no
      CJK ................................ no
    XT9 .................................. no
      XT9 Debug .......................... no
      XT9 9-key layouts .................. no
    Bundle resources ..................... no
      Handwriting ........................ no
      XT9 ................................ no
  Hunspell ............................... no
    Using Hunspell copy from 3rdparty/ ... no
  OpenWnn ................................ yes
  MyScript ............................... no
  Language support enabled for:
    Arabic ............................... yes
    Bulgarian ............................ yes
    Czech ................................ yes
    Danish ............................... yes
    German ............................... yes
    Greek ................................ yes
    English GB ........................... yes
    English US ........................... yes
    Spanish .............................. yes
    Spanish Mexico ....................... yes
    Estonian ............................. yes
    Farsi ................................ yes
    Finnish .............................. yes
    French Canada ........................ yes
    French France ........................ yes
    Hebrew ............................... yes
    Hindi ................................ yes
    Croatian ............................. yes
    Hungarian ............................ yes
    Indonesian ........................... yes
    Italian .............................. yes
    Japanese ............................. yes
    Korean ............................... yes
    Malay ................................ yes
    Norwegian ............................ yes
    Dutch ................................ yes
    Polish ............................... yes
    Portuguese Brazil .................... yes
    Portuguese Portugal .................. yes
    Romanian ............................. yes
    Russian .............................. yes
    Slovak ............................... yes
    Slovenian ............................ yes
    Albanian ............................. yes
    Serbian .............................. yes
    Swedish .............................. yes
    Thai ................................. yes
    Turkish .............................. yes
    Ukrainian ............................ yes
    Vietnamese ........................... yes
    Simplified Chinese ................... yes
    Traditional Chinese .................. yes
    HongKong Chinese ..................... no
  Traditional chinese input methods:
    Zhuyin ............................... yes
    Cangjie .............................. yes
WebEngine Repository Build Options:
  Build Ninja ............................ no
  Build Gn ............................... yes
  Jumbo Build ............................ yes
  Developer build ........................ no
  Build QtWebEngine Modules:
    Build QtWebEngineCore ................ no
    Build QtWebEngineWidgets ............. no
    Build QtWebEngineQuick ............... no
  Build QtPdf Modules:
    Build QtPdfWidgets ................... no
    Build QtPdfQuick ..................... no
  Optional system libraries:
    re2 .................................. no
    icu .................................. no
    libwebp, libwebpmux and libwebpdemux . no
    opus ................................. no
    ffmpeg ............................... no
    libvpx ............................... no
    snappy ............................... no
    glib ................................. no
    zlib ................................. no
    minizip .............................. no
    libevent ............................. no
    libxml2 and libxslt .................. no
    lcms2 ................................ no
    png .................................. no
    jpeg ................................. no
    harfbuzz ............................. no
    freetype ............................. no
    libpci ............................... no

Note: Hunspell disabled. Spelling correction will not be available.

WARNING: QDoc will not be compiled, probably because libclang could not be located. This means that you cannot build the Qt documentation.
Either set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
On Linux systems, you may be able to install libclang by installing the libclang-dev or libclang-devel package, depending on your distribution.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be available. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
WARNING: QtWebEngine won't be built. Build can be done only on Linux, Windows or macOS.
WARNING: QtPdf won't be built. Build can be done only on Linux, Windows or macOS.

Qt is now configured for building. Just run 'cmake --build . --parallel'

Once everything is built, you must run 'cmake --install .'
Qt will be installed into 'E:/Qt/Qt6.2.2/android'

To configure and build other Qt modules, you can use the following convenience script:
        E:/Qt/Qt6.2.2/android/bin/qt-configure-module.bat

If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory

-- Configuring done
-- Generating done
-- Build files have been written to: E:/repos/qt-everywhere-src-6.2.2
cmake --build . --parallel
cmake --install .

Updated QT Creator settings file I %SystemDrive%\Documents and Settings\%USERNAME%\Application Data\QtProject\qtcreator\android\sdk_definitions.json as follows:

{
    "common": {
        "sdk_tools_url": {
            "linux": "https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip",
            "linux_sha256": "89f308315e041c93a37a79e0627c47f21d5c5edbe5e80ea8dc0aac8a649e0e92",
            "windows": "https://dl.google.com/android/repository/commandlinetools-win-6609375_latest.zip",
            "windows_sha256": "40bba20275180194bebf89bb58c74d712bb93cc401f36bd2f8f32383acf9826c",
            "mac": "https://dl.google.com/android/repository/commandlinetools-mac-6609375_latest.zip",
            "mac_sha256": "2c3822db1c916655223e5ee8ce0fbf6b73d0b99012045c9dc8eaa6a5736c0c55"
        },
        "sdk_essential_packages": {
            "default": ["platform-tools", "platforms;android-31", "cmdline-tools;latest"],
            "linux": [],
            "mac": [],
            "windows": ["extras;google;usb_driver"]
        }
    },
    "specific_qt_versions": [
        {
            "versions": ["default"],
            "sdk_essential_packages": ["build-tools;31.0.0", "ndk;22.1.7171670"],
            "ndk_path": "ndk/22.1.7171670"
        },
        {
            "versions": ["5.12.[0-5]", "5.13.[0-1]"],
            "sdk_essential_packages": ["build-tools;28.0.2", "ndk;19.2.5345600"],
            "ndk_path": "ndk/19.2.5345600"
        }
    ]
}

QT Creator detected CLang toolchain automatically. Also I tried to add C and C++ CLang compilers C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe and C:/Users/D-Ef/AppData/Local/Android/Sdk/ndk/22.1.7171670/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe manually. After that I was able to add QT version to QT Creator:

The sizes of 6.2.2 libs:

The sizes of QT 5.15.2 libs:

1 Response to Building QT 6.2.2 for Windows and Android

  1. Anton K. says:

    Thanks for sharing.
    It is quite handy to build in a separate directory, so the intermediate files later can be easily cleaned. To do so you should first cd into build subdir and adjust relative dirs accordingly.

Leave a Reply to Anton K. Cancel reply

Your email address will not be published. Required fields are marked *