Building QT 6.3.0 for Windows with OpenSSL and C++20

Now QT doesn’t like backslashes in configure.bat parameters. Also I updated vcvarsall.bat path and added -c++std c++20: and tried static build with -static option:

CALL "C:\Program Files\Microsoft Visual Studio\2022\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.3.0\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 ^
-c++std c++20 -static -I "C:/Program Files/OpenSSL/include" -L "C:/Program Files/OpenSSL/lib"

qtconnectivity module did not compile, because it includes experimental/coroutine that does not exist in C++20, so I excluded qtconnectivity along with other modules I not need from the build and reconfigured QT as follows:

rm -fr qt-everywhere-src-6.3.0/ && unzip /c/Users/D-Ef/Downloads/qt-everywhere-src-6.3.0.zip
configure.bat -prefix %MY_INSTALL_PATH% -DQT_NO_EXCEPTIONS=1 -debug-and-release -force-debug-info -platform win32-msvc -opensource -confirm-license ^
  -c++std c++20 -static -I "C:/Program Files/OpenSSL/include" -L "C:/Program Files/OpenSSL/lib" ^
  -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity ^
  -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua ^
  -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects ^
  -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland ^
  -skip qtwebchannel -skip qtwebengine -skip qtwebview

It printed the following:

+ cd qtbase
+ E:\repos\qt-everywhere-src-6.3.0\qtbase\configure.bat -top-level -prefix E:\Qt\Qt6.3.0\windows -DQT_NO_EXCEPTIONS=1 -debug-and-release -force-debug-info -platform win32-msvc -opensource -confirm-license   -c++std c++20 -static -I "C:/Program Files/OpenSSL/include" -L "C:/Program Files/OpenSSL/lib"   -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity   -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua   -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects   -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland   -skip qtwebchannel -skip qtwebengine -skip qtwebview
-- Windows 10 SDK version: 10.0.19041.0
'E:/PFiles/cmake-3.21.3-windows-x86_64/bin/cmake.exe' '-DBUILD_qt3d=OFF' '-DBUILD_qt5compat=OFF' '-DBUILD_qtactiveqt=OFF' '-DBUILD_qtcharts=OFF' '-DBUILD_qtcoap=OFF' '-DBUILD_qtconnectivity=OFF' '-DBUILD_qtdatavis3d=OFF' '-DBUILD_qtdoc=OFF' '-DBUILD_qtlottie=OFF' '-DBUILD_qtmqtt=OFF' '-DBUILD_qtnetworkauth=OFF' '-DBUILD_qtopcua=OFF' '-DBUILD_qtserialport=OFF' '-DBUILD_qtpositioning=OFF' '-DBUILD_qtquicktimeline=OFF' '-DBUILD_qtquick3d=OFF' '-DBUILD_qtremoteobjects=OFF' '-DBUILD_qtscxml=OFF' '-DBUILD_qtsensors=OFF' '-DBUILD_qtserialbus=OFF' '-DBUILD_qtvirtualkeyboard=OFF' '-DBUILD_qtwayland=OFF' '-DBUILD_qtwebchannel=OFF' '-DBUILD_qtwebengine=OFF' '-DBUILD_qtwebview=OFF' '-DBUILD_SHARED_LIBS=OFF' '-DCMAKE_INSTALL_PREFIX=E:/Qt/Qt6.3.0/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_cxx14=yes' '-DINPUT_cxx17=yes' '-DINPUT_cxx20=yes' '-G' 'Ninja Multi-Config' 'E:/repos/qt-everywhere-src-6.3.0'
-- The CXX compiler identification is MSVC 19.31.31106.2
-- The C compiler identification is MSVC 19.31.31106.2
-- The ASM compiler identification is MSVC
-- Found assembler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.31.31103/bin/Hostx64/x64/cl.exe
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.31.31103/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/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.31.31103/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 'qtlanguageserver'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qttools'
Skipping optional dependency 'qtactiveqt' of 'qttools', because building 'qtactiveqt' was explicitly disabled.
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtwebsockets'
Configuring 'qtbase'
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
Generating Plugins files for BundledLibpng;PngPrivate;BundledLibjpeg;JpegPrivate;BundledFreetype;FreetypePrivate;BundledHarfbuzz;HarfbuzzPrivate;BundledPcre2;EntryPointPrivate;Core;ZlibPrivate;Concurrent;Sql;Network;Xml;DBus;Gui;OpenGL;Widgets;OpenGLWidgets;DeviceDiscoverySupportPrivate;FbSupportPrivate;Test;PrintSupport...
Configuring 'qtshadertools'
Generating Plugins files for BundledGlslang_Spirv;BundledGlslang_Osdependent;BundledGlslang_Oglcompiler;BundledGlslang_Glslang;BundledSpirv_Cross;ShaderTools...
Configuring 'qtsvg'
Generating Plugins files for Svg;SvgWidgets...
Configuring 'qtlanguageserver'
Generating Plugins files for JsonRpcPrivate;LanguageServerPrivate...
Configuring 'qtimageformats'
Generating Plugins files for ...
Configuring 'qtdeclarative'
Generating Plugins files for QmlIntegration;Qml;QmlModels;QmlCore;QmlWorkerScript;QmlLocalStorage;QmlXmlListModel;Quick;QuickLayouts;QuickTest;QuickTestUtilsPrivate;QuickParticlesPrivate;QuickShapesPrivate;QuickWidgets;QuickTemplates2;QuickControls2Impl;QuickControls2;QuickDialogs2Utils;QuickDialogs2QuickImpl;QuickDialogs2;QuickControlsTestUtilsPrivate;LabsSettings;LabsQmlModels;LabsFolderListModel;LabsAnimation;LabsWavefrontMesh;LabsSharedImage;PacketProtocolPrivate;QmlCompilerPrivate;QmlLintPrivate;QmlDomPrivate;QmlDebugPrivate...
Configuring 'qtmultimedia'
Generating Plugins files for Multimedia;MultimediaQuickPrivate;MultimediaWidgets...
Configuring 'qt3d'
Configuring 'qt5compat'
Configuring 'qtactiveqt'
Configuring 'qtcharts'
Configuring 'qtcoap'
Configuring 'qtconnectivity'
Configuring 'qtdatavis3d'
Configuring 'qttools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find Clang (missing: Clang_DIR)
QtDesigner: WARNING: E:/repos/qt-everywhere-src-6.3.0/qttools/src/designer/src/lib/uilib/formbuilder.h includes abstractformbuilder.h when it should include QtDesigner/abstractformbuilder.h
Generating Plugins files for Tools;Linguist;UiPlugin;UiTools;Designer;DesignerComponentsPrivate;Help...
Configuring 'qtdoc'
Configuring 'qtlottie'
Configuring 'qtmqtt'
Configuring 'qtnetworkauth'
Configuring 'qtopcua'
Configuring 'qtserialport'
Configuring 'qtpositioning'
Configuring 'qtquicktimeline'
Configuring 'qtquick3d'
Configuring 'qtremoteobjects'
Configuring 'qtscxml'
Configuring 'qtsensors'
Configuring 'qtserialbus'
Configuring 'qttranslations'
CMake Warning at qttranslations/translations/CMakeLists.txt:37 (message):
  Directory
  'E:/repos/qt-everywhere-src-6.3.0/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:105 (add_ts_targets)


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


Configuring 'qtvirtualkeyboard'
Configuring 'qtwayland'
Configuring 'qtwebsockets'
Generating Plugins files for WebSockets...
Configuring 'qtwebchannel'
Configuring 'qtwebengine'
Configuring 'qtwebview'
-- The following packages have been found:

 * QtBuildInternals
 * OpenSSL
 * OpenGL
 * WrapOpenSSLHeaders
 * WrapOpenSSL
 * WrapOpenGL
 * ODBC
 * WrapJpeg
 * Qt6Concurrent (required version >= 6.3.0)
 * Python
 * Qt6ZlibPrivate (required version >= 6.3.0)
 * Qt6Svg (required version >= 6.3.0)
 * Qt6QuickTemplates2Private (required version >= 6.3.0)
 * Qt6QuickControls2 (required version >= 6.3.0)
 * Qt6ShaderToolsTools (required version >= 6.3.0)
 * Qt6ShaderTools
 * WMF
 * Qt6DBusTools (required version >= 6.3.0)
 * Qt6DBus (required version >= 6.3.0)
 * Qt6Xml (required version >= 6.3.0)
 * Qt6WidgetsTools (required version >= 6.3.0)
 * Qt6Widgets (required version >= 6.3.0)
 * Qt6OpenGLPrivate (required version >= 6.3.0)
 * Qt6QuickWidgets (required version >= 6.3.0)
 * Qt6Sql (required version >= 6.3.0)
 * Qt6PrintSupport (required version >= 6.3.0)
 * Qt6OpenGLWidgets (required version >= 6.3.0)
 * Qt6LinguistTools (required version >= 6.3.0)
 * Qt6Linguist (required version >= 6.3.0)
 * Qt6BuildInternals (required version >= 6.3.0)
 * WrapAtomic
 * WrapPCRE2
 * Qt6CoreTools (required version >= 6.3.0)
 * Qt6Core (required version >= 6.3.0)
 * Qt6Network (required version >= 6.3.0)
 * WrapPNG
 * WrapHarfbuzz
 * WrapFreetype
 * Qt6GuiTools (required version >= 6.3.0)
 * Qt6Gui (required version >= 6.3.0)
 * Qt6QmlModels (required version >= 6.3.0)
 * Qt6OpenGL (required version >= 6.3.0)
 * Qt6Quick (required version >= 6.3.0)
 * Qt6Test (required version >= 6.3.0)
 * Threads
 * Qt6QmlTools (required version >= 6.3.0)
 * Qt6QmlPrivate (required version >= 6.3.0)
 * Qt6QuickTest (required version >= 6.3.0)
 * Qt6 (required version >= 6.3.0)

-- The following OPTIONAL packages have not been found:

 * WrapZLIB (required version >= 1.0.8)
 * zstd
 * WrapZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Libudev
 * double-conversion
 * WrapDoubleConversion
 * ICU
 * 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/>
 * WrapSystemJpeg
 * md4c
 * WrapSystemMd4c
 * ZLIB
 * PNG
 * WrapSystemPNG
 * Mtdev
 * GLESv2
 * Tslib
 * Vulkan
 * 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
 * Qt6LanguageServer (required version >= 6.3.0)
 * LTTngUST
 * 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/>
 * Qt6AxContainer (required version >= 6.3.0)
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * PkgConfig
 * Qt6QmlCompilerPlusPrivate

-- Configure summary:

Building for: win32-msvc (x86_64, CPU features: sse sse2)
Compiler: msvc 19.31.31106.2
Build options:
  Mode ................................... debug and release (with debug info)
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. no
  Using C standard ....................... C11
  Using C++ standard ..................... C++20
  Relocatable ............................ no
  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
  cpp/winrt base ......................... no
  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
Core tools:
  Android deployment tool ................ yes
  macOS deployment tool .................. no
  Windows deployment tool ................ yes
  qmake .................................. yes
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
  HiRes wheel support in 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
    DirectW
rite .......................... 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
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    Using system libtiff ................. no
  WEBP ................................... yes
    Using system libwebp ................. no
Qt Note: Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library.

WARNING: Basic cpp/winrt support missing. Some features might 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.

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
  TreeView 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
  Calendar support ....................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ no
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... no
  Windows Media Foundation ............... yes
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  pixeltool .............................. yes
  qdbus .................................. yes
  Qt Attributions Scanner ................ yes
  qtdiag ................................. yes
  qtplugininfo ........................... yes
-- 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.3.0/windows'

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

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

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

Then it built and installed successfully:

cmake --build . --parallel
ninja install

The following libraries appeared in lib folder:

Qt6BundledFreetype.lib
Qt6BundledFreetyped.lib
Qt6BundledGlslang_Glslang.lib
Qt6BundledGlslang_Glslangd.lib
Qt6BundledGlslang_Oglcompiler.lib
Qt6BundledGlslang_Oglcompilerd.lib
Qt6BundledGlslang_Osdependent.lib
Qt6BundledGlslang_Osdependentd.lib
Qt6BundledGlslang_Spirv.lib
Qt6BundledGlslang_Spirvd.lib
Qt6BundledHarfbuzz.lib
Qt6BundledHarfbuzzd.lib
Qt6BundledLibjpeg.lib
Qt6BundledLibjpegd.lib
Qt6BundledLibpng.lib
Qt6BundledLibpngd.lib
Qt6BundledPcre2.lib
Qt6BundledPcre2d.lib
Qt6BundledSpirv_Cross.lib
Qt6BundledSpirv_Crossd.lib
Qt6Concurrent.lib
Qt6Concurrentd.lib
Qt6Core.lib
Qt6Cored.lib
Qt6DBus.lib
Qt6DBusd.lib
Qt6Designer.lib
Qt6DesignerComponents.lib
Qt6DesignerComponentsd.lib
Qt6Designerd.lib
Qt6DeviceDiscoverySupport.lib
Qt6DeviceDiscoverySupportd.lib
Qt6EntryPoint.lib
Qt6EntryPointd.lib
Qt6FbSupport.lib
Qt6FbSupportd.lib
Qt6Gui.lib
Qt6Guid.lib
Qt6Help.lib
Qt6Helpd.lib
Qt6JsonRpc.lib
Qt6JsonRpcd.lib
Qt6LabsAnimation.lib
Qt6LabsAnimationd.lib
Qt6LabsFolderListModel.lib
Qt6LabsFolderListModeld.lib
Qt6LabsQmlModels.lib
Qt6LabsQmlModelsd.lib
Qt6LabsSettings.lib
Qt6LabsSettingsd.lib
Qt6LabsSharedImage.lib
Qt6LabsSharedImaged.lib
Qt6LabsWavefrontMesh.lib
Qt6LabsWavefrontMeshd.lib
Qt6LanguageServer.lib
Qt6LanguageServerd.lib
Qt6Multimedia.lib
Qt6Multimediad.lib
Qt6MultimediaQuick.lib
Qt6MultimediaQuickd.lib
Qt6MultimediaWidgets.lib
Qt6MultimediaWidgetsd.lib
Qt6Network.lib
Qt6Networkd.lib
Qt6OpenGL.lib
Qt6OpenGLd.lib
Qt6OpenGLWidgets.lib
Qt6OpenGLWidgetsd.lib
Qt6PacketProtocol.lib
Qt6PacketProtocold.lib
Qt6PrintSupport.lib
Qt6PrintSupportd.lib
Qt6Qml.lib
Qt6QmlCompiler.lib
Qt6QmlCompilerd.lib
Qt6QmlCore.lib
Qt6QmlCored.lib
Qt6Qmld.lib
Qt6QmlDebug.lib
Qt6QmlDebugd.lib
Qt6QmlDom.lib
Qt6QmlDomd.lib
Qt6QmlLint.lib
Qt6QmlLintd.lib
Qt6QmlLocalStorage.lib
Qt6QmlLocalStoraged.lib
Qt6QmlModels.lib
Qt6QmlModelsd.lib
Qt6QmlWorkerScript.lib
Qt6QmlWorkerScriptd.lib
Qt6QmlXmlListModel.lib
Qt6QmlXmlListModeld.lib
Qt6Quick.lib
Qt6QuickControls2.lib
Qt6QuickControls2d.lib
Qt6QuickControls2Impl.lib
Qt6QuickControls2Impld.lib
Qt6QuickControlsTestUtils.lib
Qt6QuickControlsTestUtilsd.lib
Qt6Quickd.lib
Qt6QuickDialogs2.lib
Qt6QuickDialogs2d.lib
Qt6QuickDialogs2QuickImpl.lib
Qt6QuickDialogs2QuickImpld.lib
Qt6QuickDialogs2Utils.lib
Qt6QuickDialogs2Utilsd.lib
Qt6QuickLayouts.lib
Qt6QuickLayoutsd.lib
Qt6QuickParticles.lib
Qt6QuickParticlesd.lib
Qt6QuickShapes.lib
Qt6QuickShapesd.lib
Qt6QuickTemplates2.lib
Qt6QuickTemplates2d.lib
Qt6QuickTest.lib
Qt6QuickTestd.lib
Qt6QuickTestUtils.lib
Qt6QuickTestUtilsd.lib
Qt6QuickWidgets.lib
Qt6QuickWidgetsd.lib
Qt6ShaderTools.lib
Qt6ShaderToolsd.lib
Qt6Sql.lib
Qt6Sqld.lib
Qt6Svg.lib
Qt6Svgd.lib
Qt6SvgWidgets.lib
Qt6SvgWidgetsd.lib
Qt6Test.lib
Qt6Testd.lib
Qt6UiTools.lib
Qt6UiToolsd.lib
Qt6WebSockets.lib
Qt6WebSocketsd.lib
Qt6Widgets.lib
Qt6Widgetsd.lib
Qt6Xml.lib
Qt6Xmld.lib

And plugins folder now contains .lib files but not .dll files.

Also I did a successful attempt to add -static-runtime option, so my final configuration become

CALL "C:\Program Files\Microsoft Visual Studio\2022\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.3.0\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 ^
  -c++std c++20 -static -static-runtime -I "C:/Program Files/OpenSSL/include" -L "C:/Program Files/OpenSSL/lib" ^
  -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity ^
  -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua ^
  -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects ^
  -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland ^
  -skip qtwebchannel -skip qtwebengine -skip qtwebview

it printed the following:

+ cd qtbase
+ E:\repos\qt-everywhere-src-6.3.0\qtbase\configure.bat -top-level -prefix E:\Qt\Qt6.3.0\windows -DQT_NO_EXCEPTIONS=1 -debug-and-release -force-debug-info -platform win32-msvc -opensource -confirm-license   -c++std c++20 -static -static-runtime -I "C:/Program Files/OpenSSL/include" -L "C:/Program Files/OpenSSL/lib"   -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity   -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua   -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects   -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland   -skip qtwebchannel -skip qtwebengine -skip qtwebview
-- Windows 10 SDK version: 10.0.19041.0
'E:/PFiles/cmake-3.21.3-windows-x86_64/bin/cmake.exe' '-DBUILD_qt3d=OFF' '-DBUILD_qt5compat=OFF' '-DBUILD_qtactiveqt=OFF' '-DBUILD_qtcharts=OFF' '-DBUILD_qtcoap=OFF' '-DBUILD_qtconnectivity=OFF' '-DBUILD_qtdatavis3d=OFF' '-DBUILD_qtdoc=OFF' '-DBUILD_qtlottie=OFF' '-DBUILD_qtmqtt=OFF' '-DBUILD_qtnetworkauth=OFF' '-DBUILD_qtopcua=OFF' '-DBUILD_qtserialport=OFF' '-DBUILD_qtpositioning=OFF' '-DBUILD_qtquicktimeline=OFF' '-DBUILD_qtquick3d=OFF' '-DBUILD_qtremoteobjects=OFF' '-DBUILD_qtscxml=OFF' '-DBUILD_qtsensors=OFF' '-DBUILD_qtserialbus=OFF' '-DBUILD_qtvirtualkeyboard=OFF' '-DBUILD_qtwayland=OFF' '-DBUILD_qtwebchannel=OFF' '-DBUILD_qtwebengine=OFF' '-DBUILD_qtwebview=OFF' '-DBUILD_SHARED_LIBS=OFF' '-DCMAKE_INSTALL_PREFIX=E:/Qt/Qt6.3.0/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_cxx14=yes' '-DINPUT_cxx17=yes' '-DINPUT_cxx20=yes' '-DINPUT_static_runtime=yes' '-G' 'Ninja Multi-Config' 'E:/repos/qt-everywhere-src-6.3.0'
-- The CXX compiler identification is MSVC 19.31.31106.2
-- The C compiler identification is MSVC 19.31.31106.2
-- The ASM compiler identification is MSVC
-- Found assembler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.31.31103/bin/Hostx64/x64/cl.exe
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.31.31103/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/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.31.31103/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 'qtlanguageserver'
Checking dependencies of 'qtimageformats'
Checking dependencies of 'qtdeclarative'
Checking dependencies of 'qtmultimedia'
Checking dependencies of 'qttools'
Skipping optional dependency 'qtactiveqt' of 'qttools', because building 'qtactiveqt' was explicitly disabled.
Checking dependencies of 'qttranslations'
Checking dependencies of 'qtwebsockets'
Configuring 'qtbase'
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
-- Could NOT find double-conversion (missing: double-conversion_DIR)
-- Could NOT find md4c (missing: md4c_DIR)
Generating Plugins files for BundledLibpng;PngPrivate;BundledLibjpeg;JpegPrivate;BundledFreetype;FreetypePrivate;BundledHarfbuzz;HarfbuzzPrivate;BundledPcre2;EntryPointPrivate;Core;ZlibPrivate;Concurrent;Sql;Network;Xml;DBus;Gui;OpenGL;Widgets;OpenGLWidgets;DeviceDiscoverySupportPrivate;FbSupportPrivate;Test;PrintSupport...
Configuring 'qtshadertools'
Generating Plugins files for BundledGlslang_Spirv;BundledGlslang_Osdependent;BundledGlslang_Oglcompiler;BundledGlslang_Glslang;BundledSpirv_Cross;ShaderTools...
Configuring 'qtsvg'
Generating Plugins files for Svg;SvgWidgets...
Configuring 'qtlanguageserver'
Generating Plugins files for JsonRpcPrivate;LanguageServerPrivate...
Configuring 'qtimageformats'
Generating Plugins files for ...
Configuring 'qtdeclarative'
Generating Plugins files for QmlIntegration;Qml;QmlModels;QmlCore;QmlWorkerScript;QmlLocalStorage;QmlXmlListModel;Quick;QuickLayouts;QuickTest;QuickTestUtilsPrivate;QuickParticlesPrivate;QuickShapesPrivate;QuickWidgets;QuickTemplates2;QuickControls2Impl;QuickControls2;QuickDialogs2Utils;QuickDialogs2QuickImpl;QuickDialogs2;QuickControlsTestUtilsPrivate;LabsSettings;LabsQmlModels;LabsFolderListModel;LabsAnimation;LabsWavefrontMesh;LabsSharedImage;PacketProtocolPrivate;QmlCompilerPrivate;QmlLintPrivate;QmlDomPrivate;QmlDebugPrivate...
Configuring 'qtmultimedia'
Generating Plugins files for Multimedia;MultimediaQuickPrivate;MultimediaWidgets...
Configuring 'qt3d'
Configuring 'qt5compat'
Configuring 'qtactiveqt'
Configuring 'qtcharts'
Configuring 'qtcoap'
Configuring 'qtconnectivity'
Configuring 'qtdatavis3d'
Configuring 'qttools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find Clang (missing: Clang_DIR)
QtDesigner: WARNING: E:/repos/qt-everywhere-src-6.3.0/qttools/src/designer/src/lib/uilib/formbuilder.h includes abstractformbuilder.h when it should include QtDesigner/abstractformbuilder.h
Generating Plugins files for Tools;Linguist;UiPlugin;UiTools;Designer;DesignerComponentsPrivate;Help...
Configuring 'qtdoc'
Configuring 'qtlottie'
Configuring 'qtmqtt'
Configuring 'qtnetworkauth'
Configuring 'qtopcua'
Configuring 'qtserialport'
Configuring 'qtpositioning'
Configuring 'qtquicktimeline'
Configuring 'qtquick3d'
Configuring 'qtremoteobjects'
Configuring 'qtscxml'
Configuring 'qtsensors'
Configuring 'qtserialbus'
Configuring 'qttranslations'
CMake Warning at qttranslations/translations/CMakeLists.txt:37 (message):
  Directory
  'E:/repos/qt-everywhere-src-6.3.0/qttranslations/translations/../../qtlocation/src'
  for qtlocation does not exist.  Skipping...
Call Stack (most recent call first):
  qttranslations/translations/CMakeLists.txt:105 (add_ts_targets)


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


Configuring 'qtvirtualkeyboard'
Configuring 'qtwayland'
Configuring 'qtwebsockets'
Generating Plugins files for WebSockets...
Configuring 'qtwebchannel'
Configuring 'qtwebengine'
Configuring 'qtwebview'
-- The following packages have been found:

 * QtBuildInternals
 * OpenSSL
 * OpenGL
 * WrapOpenSSLHeaders
 * WrapOpenSSL
 * WrapOpenGL
 * ODBC
 * WrapJpeg
 * Qt6Concurrent (required version >= 6.3.0)
 * Python
 * Qt6ZlibPrivate (required version >= 6.3.0)
 * Qt6Svg (required version >= 6.3.0)
 * Qt6QuickTemplates2Private (required version >= 6.3.0)
 * Qt6QuickControls2 (required version >= 6.3.0)
 * Qt6ShaderToolsTools (required version >= 6.3.0)
 * Qt6ShaderTools
 * WMF
 * Qt6DBusTools (required version >= 6.3.0)
 * Qt6DBus (required version >= 6.3.0)
 * Qt6Xml (required version >= 6.3.0)
 * Qt6WidgetsTools (required version >= 6.3.0)
 * Qt6Widgets (required version >= 6.3.0)
 * Qt6OpenGLPrivate (required version >= 6.3.0)
 * Qt6QuickWidgets (required version >= 6.3.0)
 * Qt6Sql (required version >= 6.3.0)
 * Qt6PrintSupport (required version >= 6.3.0)
 * Qt6OpenGLWidgets (required version >= 6.3.0)
 * Qt6LinguistTools (required version >= 6.3.0)
 * Qt6Linguist (required version >= 6.3.0)
 * Qt6BuildInternals (required version >= 6.3.0)
 * WrapAtomic
 * WrapPCRE2
 * Qt6CoreTools (required version >= 6.3.0)
 * Qt6Core (required version >= 6.3.0)
 * Qt6Network (required version >= 6.3.0)
 * WrapPNG
 * WrapHarfbuzz
 * WrapFreetype
 * Qt6GuiTools (required version >= 6.3.0)
 * Qt6Gui (required version >= 6.3.0)
 * Qt6QmlModels (required version >= 6.3.0)
 * Qt6OpenGL (required version >= 6.3.0)
 * Qt6Quick (required version >= 6.3.0)
 * Qt6Test (required version >= 6.3.0)
 * Threads
 * Qt6QmlTools (required version >= 6.3.0)
 * Qt6QmlPrivate (required version >= 6.3.0)
 * Qt6QuickTest (required version >= 6.3.0)
 * Qt6 (required version >= 6.3.0)

-- The following OPTIONAL packages have not been found:

 * WrapZLIB (required version >= 1.0.8)
 * zstd
 * WrapZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
 * DBus1 (required version >= 1.2)
 * WrapDBus1 (required version >= 1.2)
 * Libudev
 * double-conversion
 * WrapDoubleConversion
 * ICU
 * 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/>
 * WrapSystemJpeg
 * md4c
 * WrapSystemMd4c
 * ZLIB
 * PNG
 * WrapSystemPNG
 * Mtdev
 * GLESv2
 * Tslib
 * Vulkan
 * 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
 * Qt6LanguageServer (required version >= 6.3.0)
 * LTTngUST
 * 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/>
 * Qt6AxContainer (required version >= 6.3.0)
 * Clang
 * WrapLibClang (required version >= 8)
 * litehtml
 * PkgConfig
 * Qt6QmlCompilerPlusPrivate

-- Configure summary:

Building for: win32-msvc (x86_64, CPU features: sse sse2)
Compiler: msvc 19.31.31106.2
Build options:
  Mode ................................... debug and release (with debug info)
  Optimize release build for size ........ no
  Fully optimize release builds (-O3) .... no
  Building shared libraries .............. no
  Using C standard ....................... C11
  Using C++ standard ..................... C++20
  Relocatable ............................ no
  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
  cpp/winrt base ......................... no
  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
Core tools:
  Android deployment tool ................ yes
  macOS deployment tool .................. no
  Windows deployment tool ................ yes
  qmake .................................. yes
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
  HiRes wheel support in 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
Further Image Formats:
  JasPer ................................. no
  MNG .................................... no
  TIFF ................................... yes
    UsinNote: Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library.

WARNING: Basic cpp/winrt support missing. Some features might 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.
g 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
  TreeView item .......................... yes
  Path support ........................... yes
  PathView item .......................... yes
  Positioner i
tems ....................... yes
  Repeater item .......................... yes
  ShaderEffect item ...................... yes
  Sprite item ............................ yes
Qt Quick Templates 2:
  Hover support .......................... yes
  Multi-touch support .................... yes
  Calendar support ....................... yes
Qt Quick Controls 2:
  Styles ................................. Basic Fusion Imagine Material Universal macOS Windows
Qt Multimedia:
  GStreamer 1.0 .......................... no
  Video for Linux ........................ no
  Linux DMA buffer support ............... no
  MMRenderer ............................. no
  AVFoundation ........................... no
  Windows Media Foundation ............... yes
Qt Tools:
  Qt Assistant ........................... yes
  QDoc ................................... no
  Clang-based lupdate parser ............. no
  Qt Designer ............................ yes
  Qt Distance Field Generator ............ yes
  Qt Linguist ............................ yes
  pixeltool .............................. yes
  qdbus .................................. yes
  Qt Attributions Scanner ................ yes
  qtdiag ................................. yes
  qtplugininfo ........................... yes
-- 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.3.0/windows'

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

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

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

It built and installed successfully:

cmake --build . --parallel
ninja install

When I built my app CMake automatically detected Multi-threaded (/MT):

Leave a Reply

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