Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-100661

Build fails with bundled pcre2 and freetype

    XMLWordPrintable

Details

    • Bug
    • Resolution: Invalid
    • Not Evaluated
    • None
    • 6.2.3
    • Build System: CMake
    • None
    • Windows

    Description

      I use attached conan recipe from conan center (with some changes). I want qt using bundled pcre2 and freetype, so I removed that from conan deps.

      import os
      import glob
      import textwrapimport configparser
      from conans import ConanFile, tools, RunEnvironment, CMake
      from conans.errors import ConanInvalidConfiguration
      from conans.model import Generator
      class qt(Generator):
          @staticmethod
          def content_template(path, folder, os_):
              return textwrap.dedent("""\
                  [Paths]
                  Prefix = {0}
                  ArchData = {1}/archdatadir
                  HostData = {1}/archdatadir
                  Data = {1}/datadir
                  Sysconf = {1}/sysconfdir
                  LibraryExecutables = {1}/archdatadir/{2}
                  HostLibraryExecutables = bin
                  Plugins = {1}/archdatadir/plugins
                  Imports = {1}/archdatadir/imports
                  Qml2Imports = {1}/archdatadir/qml
                  Translations = {1}/datadir/translations
                  Documentation = {1}/datadir/doc
                  Examples = {1}/datadir/examples""").format(path, folder,
                      "bin" if os_ == "Windows" else "libexec")    @property
          def filename(self):
              return "qt.conf"    @property
          def content(self):
              return qt.content_template(
                  self.conanfile.deps_cpp_info["qt"].rootpath.replace("\\", "/"),
                  "res",
                  self.conanfile.settings.os)
      class QtConan(ConanFile):
          _submodules = ["qtsvg", "qtdeclarative", "qttools", "qttranslations", "qtdoc",
                         "qtwayland","qtquickcontrols2", "qtquicktimeline", "qtquick3d", "qtshadertools", "qt5compat",
                         "qtactiveqt", "qtcharts", "qtdatavis3d", "qtlottie", "qtscxml", "qtvirtualkeyboard",
                         "qt3d", "qtimageformats", "qtnetworkauth", "qtcoap", "qtmqtt", "qtopcua",
                         "qtmultimedia", "qtlocation", "qtsensors", "qtconnectivity", "qtserialbus",
                         "qtserialport", "qtwebsockets", "qtwebchannel", "qtwebengine", "qtwebview",
                         "qtremoteobjects", "qtpositioning"]    generators = "pkg_config", "cmake_find_package", "cmake"
          name = "qt"
          description = "Qt is a cross-platform framework for graphical user interfaces."
          topics = ("qt", "ui")
          url = "https://github.com/conan-io/conan-center-index"
          homepage = "https://www.qt.io"
          license = "LGPL-3.0"
          settings = "os", "arch", "compiler", "build_type"    options = {
              "shared": [True, False],
              "opengl": ["no", "desktop", "dynamic"],
              "with_vulkan": [True, False],
              "openssl": [True, False],
              "with_pcre2": [True, False],
              "with_glib": [True, False],
              "with_doubleconversion": [True, False],
              "with_freetype": [True, False],
              "with_fontconfig": [True, False],
              "with_icu": [True, False],
              "with_harfbuzz": [True, False],
              "with_libjpeg": ["libjpeg", "libjpeg-turbo", False],
              "with_libpng": [True, False],
              "with_sqlite3": [True, False],
              "with_mysql": [True, False],
              "with_pq": [True, False],
              "with_odbc": [True, False],
              "with_zstd": [True, False],
              "with_brotli": [True, False],
              "with_dbus": [True, False],
              "with_libalsa": [True, False],
              "with_openal": [True, False],
              "with_gstreamer": [True, False],
              "with_pulseaudio": [True, False],        "gui": [True, False],
              "widgets": [True, False],        "device": "ANY",
              "cross_compile": "ANY",
              "sysroot": "ANY",
              "multiconfiguration": [True, False],
          }
          options.update({module: [True, False] for module in _submodules})
          print(_submodules)    # this significantly speeds up windows builds
          no_copy_source = True    default_options = {
              "shared": False,
              "opengl": "desktop",
              "with_vulkan": False,
              "openssl": True,
              "with_pcre2": False,
              "with_glib": False,
              "with_doubleconversion": False,
              "with_freetype": False,
              "with_fontconfig": False,
              "with_icu": False,
              "with_harfbuzz": False,
              "with_libjpeg": False,
              "with_libpng": False,
              "with_sqlite3": False,
              "with_mysql": False,
              "with_pq": False,
              "with_odbc": False,
              "with_zstd": False,
              "with_brotli": False,
              "with_dbus": False,
              "with_libalsa": False,
              "with_openal": False,
              "with_gstreamer": False,
              "with_pulseaudio": False,        "gui": True,
              "widgets": True,        "device": None,
              "cross_compile": None,
              "sysroot": None,
              "multiconfiguration": False,
          }
          default_options.update({module: False for module in _submodules})    short_paths = False    _cmake = None    _submodules_tree = None    @property
          def _get_module_tree(self):
              if self._submodules_tree:
                  return self._submodules_tree
              config = configparser.ConfigParser()
              config.read(os.path.join(self.recipe_folder, "qtmodules%s.conf" % self.version))
              self._submodules_tree = {}
              assert config.sections()
              for s in config.sections():
                  section = str(s)
                  assert section.startswith("submodule ")
                  assert section.count('"') == 2
                  modulename = section[section.find('"') + 1: section.rfind('"')]
                  status = str(config.get(section, "status"))
                  if status not in ["obsolete", "ignore", "additionalLibrary"]:
                      self._submodules_tree[modulename] = {"status": status,
                                      "path": str(config.get(section, "path")), "depends": []}
                      if config.has_option(section, "depends"):
                          self._submodules_tree[modulename]["depends"] = [str(i) for i in config.get(section, "depends").split()]        for m in self._submodules_tree:
                  assert m in ["qtbase", "qtqa", "qtrepotools"] or m in self._submodules, "module %s not in self._submodules" % m        return self._submodules_tree    def export_sources(self):
              for patch in self.conan_data.get("patches", {}).get(self.version, []):
                  self.copy(patch["patch_file"])    def export(self):
              self.copy("qtmodules%s.conf" % self.version)    def config_options(self):
              if self.settings.os not in ["Linux", "FreeBSD"]:
                  del self.options.with_icu
                  del self.options.with_fontconfig
                  self.options.with_glib = False
                  del self.options.with_libalsa        if self.settings.os == "Windows":
                  self.options.opengl = "dynamic"
              if self.settings.os != "Linux":
                  self.options.qtwayland = False        for m in self._submodules:
                  if m not in self._get_module_tree:
                      delattr(self.options, m)    @property
          def _minimum_compilers_version(self):
              # Qt6 requires C++17
              return {
                  "Visual Studio": "16",
                  "gcc": "8",
                  "clang": "9",
                  "apple-clang": "11"
              }    def configure(self):
              if not self.options.gui:
                  del self.options.opengl
                  del self.options.with_vulkan
                  del self.options.with_freetype
                  del self.options.with_fontconfig
                  del self.options.with_harfbuzz
                  del self.options.with_libjpeg
                  del self.options.with_libpng        if not self.options.get_safe("qtmultimedia"):
                  del self.options.with_libalsa
                  del self.options.with_openal
                  del self.options.with_gstreamer
                  del self.options.with_pulseaudio        if self.settings.os in ("FreeBSD", "Linux"):
                  if self.options.get_safe("qtwebengine"):
                      self.options.with_fontconfig = True        if self.options.multiconfiguration:
                  del self.settings.build_type        def _enablemodule(mod):
                  if mod != "qtbase":
                      setattr(self.options, mod, True)
                  for req in self._get_module_tree[mod]["depends"]:
                      _enablemodule(req)        for module in self._get_module_tree:
                  if self.options.get_safe(module):
                      _enablemodule(module)    def validate(self):
              # C++ minimum standard required
              if self.settings.compiler.get_safe("cppstd"):
                  tools.check_min_cppstd(self, 17)
              minimum_version = self._minimum_compilers_version.get(str(self.settings.compiler), False)
              if not minimum_version:
                  self.output.warn("C++17 support required. Your compiler is unknown. Assuming it supports C++17.")
              elif tools.Version(self.settings.compiler.version) < minimum_version:
                  raise ConanInvalidConfiguration("C++17 support required, which your compiler does not support.")        if self.options.get_safe("qtwebengine"):
                  if not self.options.shared:
                      raise ConanInvalidConfiguration("Static builds of Qt WebEngine are not supported")            if not (self.options.gui and self.options.qtdeclarative and self.options.qtwebchannel):
                      raise ConanInvalidConfiguration("option qt:qtwebengine requires also qt:gui, qt:qtdeclarative and qt:qtwebchannel")            if tools.cross_building(self.settings, skip_x64_x86=True):
                      raise ConanInvalidConfiguration("Cross compiling Qt WebEngine is not supported")        if self.options.widgets and not self.options.gui:
                  raise ConanInvalidConfiguration("using option qt:widgets without option qt:gui is not possible. "
                                                  "You can either disable qt:widgets or enable qt:gui")
              if self.settings.os == "Android" and self.options.get_safe("opengl", "no") == "desktop":
                  raise ConanInvalidConfiguration("OpenGL desktop is not supported on Android.")        if self.settings.os != "Windows" and self.options.get_safe("opengl", "no") == "dynamic":
                  raise ConanInvalidConfiguration("Dynamic OpenGL is supported only on Windows.")        if self.options.get_safe("with_fontconfig", False) and not self.options.get_safe("with_freetype", False):
                  raise ConanInvalidConfiguration("with_fontconfig cannot be enabled if with_freetype is disabled.")        if "MT" in self.settings.get_safe("compiler.runtime", default="") and self.options.shared:
                  raise ConanInvalidConfiguration("Qt cannot be built as shared library with static runtime")        if self.options.get_safe("with_pulseaudio", False) or self.options.get_safe("with_libalsa", False):
                  raise ConanInvlidConfiguration("alsa and pulseaudio are not supported (QTBUG-95116), please disable them.")
          def requirements(self):
              self.requires("zlib/1.2.11")
              if self.options.openssl:
                  self.requires("openssl/1.1.1m")
              if self.options.get_safe("with_vulkan"):
                  self.requires("vulkan-loader/1.2.182")
                  if tools.is_apple_os(self.settings.os):
                      self.requires("moltenvk/1.1.4")
              if self.options.with_glib:
                  self.requires("glib/2.70.1")
              if self.options.with_doubleconversion and not self.options.multiconfiguration:
                  self.requires("double-conversion/3.1.7")
              if self.options.get_safe("with_fontconfig", False):
                  self.requires("fontconfig/2.13.93")
              if self.options.get_safe("with_icu", False):
                  self.requires("icu/70.1")
              if self.options.get_safe("with_harfbuzz", False) and not self.options.multiconfiguration:
                  self.requires("harfbuzz/3.2.0")
              if self.options.get_safe("with_libjpeg", False) and not self.options.multiconfiguration:
                  if self.options.with_libjpeg == "libjpeg-turbo":
                      self.requires("libjpeg-turbo/2.1.2")
                  else:
                      self.requires("libjpeg/9d")
              if self.options.get_safe("with_libpng", False) and not self.options.multiconfiguration:
                  self.requires("libpng/1.6.37")
              if self.options.with_sqlite3 and not self.options.multiconfiguration:
                  self.requires("sqlite3/3.37.2")
                  self.options["sqlite3"].enable_column_metadata = True
              if self.options.get_safe("with_mysql", False):
                  self.requires("libmysqlclient/8.0.25")
              if self.options.with_pq:
                  self.requires("libpq/13.4")
              if self.options.with_odbc:
                  if self.settings.os != "Windows":
                      self.requires("odbc/2.3.9")
              if self.options.get_safe("with_openal", False):
                  self.requires("openal/1.21.1")
              if self.options.get_safe("with_libalsa", False):
                  self.requires("libalsa/1.2.5.1")
              if self.options.gui and self.settings.os in ["Linux", "FreeBSD"]:
                  self.requires("xorg/system")
                  if not tools.cross_building(self, skip_x64_x86=True):
                      self.requires("xkbcommon/1.3.1")
              if self.settings.os != "Windows" and self.options.get_safe("opengl", "no") != "no":
                  self.requires("opengl/system")
              if self.options.with_zstd:
                  self.requires("zstd/1.5.2")
              if self.options.qtwayland:
                  self.requires("wayland/1.20.0")
              if self.options.with_brotli:
                  self.requires("brotli/1.0.9")
              if self.options.get_safe("qtwebengine") and self.settings.os == "Linux":
                  self.requires("expat/2.4.3")
                  self.requires("opus/1.3.1")
                  self.requires("xorg-proto/2021.4")
                  self.requires("libxshmfence/1.3")
                  self.requires("nss/3.72")
                  self.requires("libdrm/2.4.109")
              if self.options.get_safe("with_gstreamer", False):
                  self.requires("gst-plugins-base/1.19.2")
              if self.options.get_safe("with_pulseaudio", False):
                  self.requires("pulseaudio/14.2")
              if self.options.with_dbus:
                  self.requires("dbus/1.12.20")    def build_requirements(self):
              self.build_requires("cmake/3.22.0")
              self.build_requires("ninja/1.10.2")
              self.build_requires("pkgconf/1.7.4")
              if self.options.with_pcre2:
                  self.build_requires("pcre2/10.37")
              if self.options.get_safe("with_freetype", False) and not self.options.multiconfiguration:
                  self.build_requires("freetype/2.11.0")        if self.settings.compiler == "Visual Studio":
                  self.build_requires('strawberryperl/5.30.0.1')        if self.options.get_safe("qtwebengine"):
                  self.build_requires("ninja/1.10.2")
                  self.build_requires("nodejs/16.3.0")
                  self.build_requires("gperf/3.1")
                  # gperf, bison, flex, python >= 2.7.5 & < 3
                  if self.settings.os != "Windows":
                      self.build_requires("bison/3.7.6")
                      self.build_requires("flex/2.6.4")
                  else:
                      self.build_requires("winflexbison/2.5.24")            # Check if a valid python2 is available in PATH or it will failflex
                  # Start by checking if python2 can be found
                  python_exe = tools.which("python2")
                  if not python_exe:
                      # Fall back on regular python
                      python_exe = tools.which("python")            if not python_exe:
                      msg = ("Python2 must be available in PATH "
                             "in order to build Qt WebEngine")
                      raise ConanInvalidConfiguration(msg)            # In any case, check its actual version for compatibility
                  from six import StringIO  # Python 2 and 3 compatible
                  mybuf = StringIO()
                  cmd_v = "\"{}\" --version".format(python_exe)
                  self.run(cmd_v, output=mybuf)
                  verstr = mybuf.getvalue().strip().split("Python ")[1]
                  if verstr.endswith("+"):
                      verstr = verstr[:-1]
                  version = tools.Version(verstr)
                  # >= 2.7.5 & < 3
                  v_min = "2.7.5"
                  v_max = "3.0.0"
                  if (version >= v_min) and (version < v_max):
                      msg = ("Found valid Python 2 required for QtWebengine:"
                             " version={}, path={}".format(mybuf.getvalue(), python_exe))
                      self.output.success(msg)
                  else:
                      msg = ("Found Python 2 in path, but with invalid version {}"
                             " (QtWebEngine requires >= {} & < "
                             "{})\nIf you have both Python 2 and 3 installed, copy the python 2 executable to"
                             "python2(.exe)".format(verstr, v_min, v_max))
                      raise ConanInvalidConfiguration(msg)        if self.options.qtwayland:
                  self.build_requires("wayland/1.20.0")    def source(self):
              tools.get(**self.conan_data["sources"][self.version],
                        strip_root=True, destination="qt6")        # patching in source method because of no_copy_source attribute        tools.replace_in_file(os.path.join("qt6", "CMakeLists.txt"),
                              "enable_testing()",
                              "include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)\nconan_basic_setup(KEEP_RPATHS)\n"
                                     "set(QT_EXTRA_INCLUDEPATHS ${CONAN_INCLUDE_DIRS})\n"
                                     "set(QT_EXTRA_DEFINES ${CONAN_DEFINES})\n"
                                     "set(QT_EXTRA_LIBDIRS ${CONAN_LIB_DIRS})\n"
                                     "enable_testing()")        for patch in self.conan_data.get("patches", {}).get(self.version, []):
                  tools.patch(**patch)
              if tools.Version(self.version) >= "6.2.0":
                  for f in ["renderer", os.path.join("renderer", "core"), os.path.join("renderer", "platform")]:
                      tools.replace_in_file(os.path.join(self.source_folder, "qt6", "qtwebengine", "src", "3rdparty", "chromium", "third_party", "blink", f, "BUILD.gn"),
                                            "  if (enable_precompiled_headers) {\n    if (is_win) {",
                                            "  if (enable_precompiled_headers) {\n    if (false) {"
                                            )        tools.replace_in_file(os.path.join("qt6", "qtbase", "cmake", "QtInternalTargets.cmake"),
                                    "target_compile_options(PlatformCommonInternal INTERFACE -Zc:wchar_t)",
                                    "target_compile_options(PlatformCommonInternal INTERFACE -Zc:wchar_t -Zc:twoPhase-)")
              for f in ["FindPostgreSQL.cmake"]:
                  file = os.path.join("qt6", "qtbase", "cmake", f)
                  if os.path.isfile(file):
                      os.remove(file)        # workaround QTBUG-94356
              if tools.Version(self.version) >= "6.1.1":
                   tools.replace_in_file(os.path.join("qt6", "qtbase", "cmake", "FindWrapZLIB.cmake"), '"-lz"', 'ZLIB::ZLIB')
                   tools.replace_in_file(os.path.join("qt6", "qtbase", "configure.cmake"),
                       "set_property(TARGET ZLIB::ZLIB PROPERTY IMPORTED_GLOBAL TRUE)",
                       "")    def _xplatform(self):
              if self.settings.os == "Linux":
                  if self.settings.compiler == "gcc":
                      return {"x86": "linux-g++-32",
                              "armv6": "linux-arm-gnueabi-g++",
                              "armv7": "linux-arm-gnueabi-g++",
                              "armv7hf": "linux-arm-gnueabi-g++",
                              "armv8": "linux-aarch64-gnu-g++"}.get(str(self.settings.arch), "linux-g++")
                  elif self.settings.compiler == "clang":
                      if self.settings.arch == "x86":
                          return "linux-clang-libc++-32" if self.settings.compiler.libcxx == "libc++" else "linux-clang-32"
                      elif self.settings.arch == "x86_64":
                          return "linux-clang-libc++" if self.settings.compiler.libcxx == "libc++" else "linux-clang"        elif self.settings.os == "Macos":
                  return {"clang": "macx-clang",
                          "apple-clang": "macx-clang",
                          "gcc": "macx-g++"}.get(str(self.settings.compiler))        elif self.settings.os == "iOS":
                  if self.settings.compiler == "apple-clang":
                      return "macx-ios-clang"        elif self.settings.os == "watchOS":
                  if self.settings.compiler == "apple-clang":
                      return "macx-watchos-clang"        elif self.settings.os == "tvOS":
                  if self.settings.compiler == "apple-clang":
                      return "macx-tvos-clang"        elif self.settings.os == "Android":
                  if self.settings.compiler == "clang":
                      return "android-clang"        elif self.settings.os == "Windows":
                  return {"Visual Studio": "win32-msvc",
                          "gcc": "win32-g++",
                          "clang": "win32-clang-g++"}.get(str(self.settings.compiler))        elif self.settings.os == "WindowsStore":
                  if self.settings.compiler == "Visual Studio":
                      return {"14": {"armv7": "winrt-arm-msvc2015",
                                     "x86": "winrt-x86-msvc2015",
                                     "x86_64": "winrt-x64-msvc2015"},
                              "15": {"armv7": "winrt-arm-msvc2017",
                                     "x86": "winrt-x86-msvc2017",
                                     "x86_64": "winrt-x64-msvc2017"},
                              "16": {"armv7": "winrt-arm-msvc2019",
                                     "x86": "winrt-x86-msvc2019",
                                     "x86_64": "winrt-x64-msvc2019"}
                              }.get(str(self.settings.compiler.version)).get(str(self.settings.arch))        elif self.settings.os == "FreeBSD":
                  return {"clang": "freebsd-clang",
                          "gcc": "freebsd-g++"}.get(str(self.settings.compiler))        elif self.settings.os == "SunOS":
                  if self.settings.compiler == "sun-cc":
                      if self.settings.arch == "sparc":
                          return "solaris-cc-stlport" if self.settings.compiler.libcxx == "libstlport" else "solaris-cc"
                      elif self.settings.arch == "sparcv9":
                          return "solaris-cc64-stlport" if self.settings.compiler.libcxx == "libstlport" else "solaris-cc64"
                  elif self.settings.compiler == "gcc":
                      return {"sparc": "solaris-g++",
                              "sparcv9": "solaris-g++-64"}.get(str(self.settings.arch))
              elif self.settings.os == "Neutrino" and self.settings.compiler == "qcc":
                  return {"armv8": "qnx-aarch64le-qcc",
                          "armv8.3": "qnx-aarch64le-qcc",
                          "armv7": "qnx-armle-v7-qcc",
                          "armv7hf": "qnx-armle-v7-qcc",
                          "armv7s": "qnx-armle-v7-qcc",
                          "armv7k": "qnx-armle-v7-qcc",
                          "x86": "qnx-x86-qcc",
                          "x86_64": "qnx-x86-64-qcc"}.get(str(self.settings.arch))
              elif self.settings.os == "Emscripten" and self.settings.arch == "wasm":
                  return "wasm-emscripten"        return None    def _configure_cmake(self):
              if self._cmake:
                  return self._cmake
              self._cmake = CMake(self, generator="Ninja")        self._cmake.definitions["INSTALL_MKSPECSDIR"] = os.path.join(self.package_folder, "res", "archdatadir", "mkspecs")
              self._cmake.definitions["INSTALL_ARCHDATADIR"] = os.path.join(self.package_folder, "res", "archdatadir")
              self._cmake.definitions["INSTALL_LIBEXECDIR"] = os.path.join(self.package_folder, "bin")
              self._cmake.definitions["INSTALL_DATADIR"] = os.path.join(self.package_folder, "res", "datadir")
              self._cmake.definitions["INSTALL_SYSCONFDIR"] = os.path.join(self.package_folder, "res", "sysconfdir")        self._cmake.definitions["QT_BUILD_TESTS"] = "OFF"
              self._cmake.definitions["QT_BUILD_EXAMPLES"] = "OFF"        if self.settings.compiler == "Visual Studio":
                  if self.settings.compiler.runtime == "MT" or self.settings.compiler.runtime == "MTd":
                      self._cmake.definitions["FEATURE_static_runtime"] = "ON"        if self.options.multiconfiguration:
                  self._cmake.generator = "Ninja Multi-Config"
                  self._cmake.definitions["CMAKE_CONFIGURATION_TYPES"] = "Release;Debug"
              self._cmake.definitions["FEATURE_optimize_size"] = ("ON" if self.settings.build_type == "MinSizeRel" else "OFF")        for module in self._get_module_tree:
                  if module != 'qtbase':
                      self._cmake.definitions["BUILD_%s" % module] = ("ON" if self.options.get_safe(module) else "OFF")        self._cmake.definitions["FEATURE_system_zlib"] = "ON"        self._cmake.definitions["INPUT_opengl"] = self.options.get_safe("opengl", "no")        # openSSL
              if not self.options.openssl:
                  self._cmake.definitions["INPUT_openssl"] = "no"
              else:
                  if self.options["openssl"].shared:
                      self._cmake.definitions["INPUT_openssl"] = "runtime"
                  else:
                      self._cmake.definitions["INPUT_openssl"] = "linked"        if self.options.with_dbus:
                 self._cmake.definitions["INPUT_dbus"] = "linked"
              else:
                 self._cmake.definitions["FEATURE_dbus"] = "OFF"
              for opt, conf_arg in [("with_glib", "glib"),
                                    ("with_icu", "icu"),
                                    ("with_fontconfig", "fontconfig"),
                                    ("with_mysql", "sql_mysql"),
                                    ("with_pq", "sql_psql"),
                                    ("with_odbc", "sql_odbc"),
                                    ("gui", "gui"),
                                    ("widgets", "widgets"),
                                    ("with_zstd", "zstd"),
                                    ("with_vulkan", "vulkan"),
                                    ("with_brotli", "brotli")]:
                  self._cmake.definitions["FEATURE_%s" % conf_arg] = ("ON" if self.options.get_safe(opt, False) else "OFF")
              for opt, conf_arg in [
                                    ("with_doubleconversion", "doubleconversion"),
                                    ("with_freetype", "freetype"),
                                    ("with_harfbuzz", "harfbuzz"),
                                    ("with_libjpeg", "jpeg"),
                                    ("with_libpng", "png"),
                                    ("with_sqlite3", "sqlite"),
                                    ("with_pcre2", "pcre2"),]:
                  if self.options.get_safe(opt, False):
                      if self.options.multiconfiguration:
                          self._cmake.definitions["FEATURE_%s" % conf_arg] = "ON"
                      else:
                          self._cmake.definitions["FEATURE_system_%s" % conf_arg] = "ON"
                  else:
                      self._cmake.definitions["FEATURE_%s" % conf_arg] = "OFF"
                      self._cmake.definitions["FEATURE_system_%s" % conf_arg] = "OFF"        if self.settings.os == "Macos":
                  self._cmake.definitions["FEATURE_framework"] = "OFF"
              elif self.settings.os == "Android":
                  self._cmake.definitions["CMAKE_ANDROID_NATIVE_API_LEVEL"] = self.settings.os.api_level
                  self._cmake.definitions["ANDROID_ABI"] =  {"armv7": "armeabi-v7a",
                                                 "armv8": "arm64-v8a",
                                                 "x86": "x86",
                                                 "x86_64": "x86_64"}.get(str(self.settings.arch))        if self.options.sysroot:
                  self._cmake.definitions["CMAKE_SYSROOT"] = self.options.sysroot        if self.options.device:
                  self._cmake.definitions["QT_QMAKE_TARGET_MKSPEC"] = os.path.join("devices", self.options.device)
              else:
                  xplatform_val = self._xplatform()
                  if xplatform_val:
                      self._cmake.definitions["QT_QMAKE_TARGET_MKSPEC"] = xplatform_val
                  else:
                      self.output.warn("host not supported: %s %s %s %s" %
                                       (self.settings.os, self.settings.compiler,
                                        self.settings.compiler.version, self.settings.arch))
              if self.options.cross_compile:
                  self._cmake.definitions["QT_QMAKE_DEVICE_OPTIONS"] = "CROSS_COMPILE=%s" % self.options.cross_compile        self._cmake.definitions["FEATURE_pkg_config"] = "ON"
              if self.settings.compiler == "gcc" and self.settings.build_type == "Debug" and not self.options.shared:
                  self._cmake.definitions["BUILD_WITH_PCH"]= "OFF" # disabling PCH to save disk space        try:
                  self._cmake.configure(source_folder="qt6")
              except:
                  cmake_err_log = os.path.join(self.build_folder, "CMakeFiles", "CMakeError.log")
                  cmake_out_log = os.path.join(self.build_folder, "CMakeFiles", "CMakeOutput.log")
                  if (os.path.isfile(cmake_err_log)):
                      self.output.info(tools.load(cmake_err_log))
                  if (os.path.isfile(cmake_out_log)):
                      self.output.info(tools.load(cmake_out_log))
                  raise
              return self._cmake    def build(self):
              #for f in glob.glob("*.cmake"):
              #    tools.replace_in_file(f,
              #        "$<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,SHARED_LIBRARY>:>",
              #        "", strict=False)
              #    tools.replace_in_file(f,
              #        "$<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,MODULE_LIBRARY>:>",
              #        "", strict=False)
              #    tools.replace_in_file(f,
              #        "$<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,EXECUTABLE>:>",
              #        "", strict=False)
              #    tools.replace_in_file(f,
              #        "$<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,SHARED_LIBRARY>:-Wl,--export-dynamic>",
              #        "", strict=False)
              #    tools.replace_in_file(f,
              #        "$<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,MODULE_LIBRARY>:-Wl,--export-dynamic>",
              #        "", strict=False)
              #    tools.replace_in_file(f,
              #        " IMPORTED)\n",
              #        " IMPORTED GLOBAL)\n", strict=False)
              with tools.vcvars(self.settings) if self.settings.compiler == "Visual Studio" else tools.no_op():
                  # next lines force cmake package to be in PATH before the one provided by visual studio (vcvars)
                  build_env = tools.RunEnvironment(self).vars if self.settings.compiler == "Visual Studio" else {}
                  build_env["MAKEFLAGS"] = "j%d" % tools.cpu_count()
                  build_env["PKG_CONFIG_PATH"] = [self.build_folder]
                  if self.settings.os == "Windows":
                      if not "PATH" in build_env:
                          build_env["PATH"] = []
                      build_env["PATH"].append(os.path.join(self.source_folder, "qt6", "gnuwin32", "bin"))
                  if self.settings.compiler == "Visual Studio":
                      # this avoids cmake using gcc from strawberryperl
                      build_env["CC"] = "cl"
                      build_env["CXX"] = "cl"
                  with tools.environment_append(build_env):                if tools.os_info.is_macos:
                          open(".qmake.stash" , "w").close()
                          open(".qmake.super" , "w").close()                cmake = self._configure_cmake()
                      if tools.os_info.is_macos:
                          with open("bash_env", "w") as f:
                              f.write('export DYLD_LIBRARY_PATH="%s"' % ":".join(RunEnvironment(self).vars["DYLD_LIBRARY_PATH"]))
                      with tools.environment_append({
                          "BASH_ENV": os.path.abspath("bash_env")
                      }) if tools.os_info.is_macos else tools.no_op():
                          with tools.run_environment(self):
                              cmake.build()
          @property
          def _cmake_executables_file(self):
              return os.path.join("lib", "cmake", "Qt6Core", "conan_qt_executables_variables.cmake")    @property
          def _cmake_entry_point_file(self):
              return os.path.join("lib", "cmake", "Qt6Core", "conan_qt_entry_point.cmake")    def _cmake_qt6_private_file(self, module):
              return os.path.join("lib", "cmake", "Qt6{0}".format(module), "conan_qt_qt6_{0}private.cmake".format(module.lower()))    def package(self):
              cmake = self._configure_cmake()
              cmake.install()
              with open(os.path.join(self.package_folder, "bin", "qt.conf"), "w") as f:
                  f.write(qt.content_template("..", "res", self.settings.os))
              self.copy("*LICENSE*", src="qt6/", dst="licenses")
              for module in self._get_module_tree:
                  if module != "qtbase" and not self.options.get_safe(module):
                      tools.rmdir(os.path.join(self.package_folder, "licenses", module))
              tools.rmdir(os.path.join(self.package_folder, "lib", "pkgconfig"))
              for mask in ["Find*.cmake", "*Config.cmake", "*-config.cmake"]:
                  tools.remove_files_by_mask(self.package_folder, mask)
              tools.remove_files_by_mask(os.path.join(self.package_folder, "lib"), "*.la*")
              tools.remove_files_by_mask(self.package_folder, "*.pdb*")
              tools.remove_files_by_mask(self.package_folder, "ensure_pro_file.cmake")
              os.remove(os.path.join(self.package_folder, "bin", "qt-cmake-private-install.cmake"))        for m in os.listdir(os.path.join(self.package_folder, "lib", "cmake")):
                  module = os.path.join(self.package_folder, "lib", "cmake", m, "%sMacros.cmake" % m)
                  helper_modules = glob.glob(os.path.join(self.package_folder, "lib", "cmake", m, "QtPublic*Helpers.cmake"))
                  if not os.path.isfile(module) and not helper_modules:
                      tools.rmdir(os.path.join(self.package_folder, "lib", "cmake", m))        extension = ""
              if self.settings.os == "Windows":
                  extension = ".exe"
              filecontents = "set(QT_CMAKE_EXPORT_NAMESPACE Qt6)\n"
              ver = tools.Version(self.version)
              filecontents += "set(QT_VERSION_MAJOR %s)\n" % ver.major
              filecontents += "set(QT_VERSION_MINOR %s)\n" % ver.minor
              filecontents += "set(QT_VERSION_PATCH %s)\n" % ver.patch
              targets = ["moc", "rcc", "tracegen", "cmake_automoc_parser", "qlalr", "qmake"]
              if self.options.with_dbus:
                  targets.extend(["qdbuscpp2xml", "qdbusxml2cpp"])
              if self.options.gui:
                  targets.append("qvkgen")
              if self.options.widgets:
                  targets.append("uic")
              if self.options.qttools:
                  targets.extend(["qhelpgenerator", "qtattributionsscanner", "windeployqt"])
                  targets.extend(["lconvert", "lprodump", "lrelease", "lrelease-pro", "lupdate", "lupdate-pro"])
              if self.options.qtshadertools:
                  targets.append("qsb")
              if self.options.qtdeclarative:
                  targets.extend(["qmltyperegistrar", "qmlcachegen", "qmllint", "qmlimportscanner"])
                  targets.extend(["qmlformat", "qml", "qmlprofiler", "qmlpreview", "qmltestrunner"])
              if self.options.get_safe("qtremoteobjects"):
                  targets.append("repc")
              for target in targets:
                  exe_path = None
                  for path_ in ["bin/{0}{1}".format(target, extension),
                                "lib/{0}{1}".format(target, extension)]:
                      if os.path.isfile(os.path.join(self.package_folder, path_)):
                          exe_path = path_
                          break
                  if not exe_path:
                      self.output.warn("Could not find path to {0}{1}".format(target, extension))
                  filecontents += textwrap.dedent("""\
                      if(NOT TARGET ${{QT_CMAKE_EXPORT_NAMESPACE}}::{0})
                          add_executable(${{QT_CMAKE_EXPORT_NAMESPACE}}::{0} IMPORTED)
                          set_target_properties(${{QT_CMAKE_EXPORT_NAMESPACE}}::{0} PROPERTIES IMPORTED_LOCATION ${{CMAKE_CURRENT_LIST_DIR}}/../../../{1})
                      endif()
                      """.format(target, exe_path))
              tools.save(os.path.join(self.package_folder, self._cmake_executables_file), filecontents)        def _create_private_module(module, dependencies=[]):
                  dependencies_string = ';'.join('Qt6::%s' % dependency for dependency in dependencies)
                  contents = textwrap.dedent("""\
                  if(NOT TARGET Qt6::{0}Private)
                      add_library(Qt6::{0}Private INTERFACE IMPORTED)                set_target_properties(Qt6::{0}Private PROPERTIES
                          INTERFACE_INCLUDE_DIRECTORIES "${{CMAKE_CURRENT_LIST_DIR}}/../../../include/Qt{0}/{1};${{CMAKE_CURRENT_LIST_DIR}}/../../../include/Qt{0}/{1}/Qt{0}"
                          INTERFACE_LINK_LIBRARIES "{2}"
                      )                add_library(Qt::{0}Private INTERFACE IMPORTED)
                      set_target_properties(Qt::{0}Private PROPERTIES
                          INTERFACE_LINK_LIBRARIES "Qt6::{0}Private"
                          _qt_is_versionless_target "TRUE"
                      )
                  endif()""".format(module, self.version, dependencies_string))            tools.save(os.path.join(self.package_folder, self._cmake_qt6_private_file(module)), contents)        _create_private_module("Core", ["Core"])        if self.options.gui:
                  _create_private_module("Gui", ["CorePrivate", "Gui"])        if self.options.qtdeclarative:
                  _create_private_module("Qml", ["CorePrivate", "Qml"])        if self.settings.os in ["Windows", "iOS"]:
                  contents = textwrap.dedent("""\
                      set(entrypoint_conditions "$<NOT:$<BOOL:$<TARGET_PROPERTY:qt_no_entrypoint>>>")
                      list(APPEND entrypoint_conditions "$<STREQUAL:$<TARGET_PROPERTY:TYPE>,EXECUTABLE>")
                      if(WIN32)
                          list(APPEND entrypoint_conditions "$<BOOL:$<TARGET_PROPERTY:WIN32_EXECUTABLE>>")
                      endif()
                      list(JOIN entrypoint_conditions "," entrypoint_conditions)
                      set(entrypoint_conditions "$<AND:${entrypoint_conditions}>")
                      set_property(
                          TARGET ${QT_CMAKE_EXPORT_NAMESPACE}::Core
                          APPEND PROPERTY INTERFACE_LINK_LIBRARIES "$<${entrypoint_conditions}:${QT_CMAKE_EXPORT_NAMESPACE}::EntryPointPrivate>"
                      )""")
                  tools.save(os.path.join(self.package_folder, self._cmake_entry_point_file), contents)    def package_id(self):
              del self.info.options.cross_compile
              del self.info.options.sysroot
              if self.options.multiconfiguration and self.settings.compiler == "Visual Studio":
                  if "MD" in self.settings.compiler.runtime:
                      self.info.settings.compiler.runtime = "MD/MDd"
                  else:
                      self.info.settings.compiler.runtime = "MT/MTd"    def package_info(self):
              self.cpp_info.names["cmake_find_package"] = "Qt6"
              self.cpp_info.names["cmake_find_package_multi"] = "Qt6"        libsuffix = ""
              if self.settings.build_type == "Debug":
                  if self.settings.os == "Windows":
                      libsuffix = "d"
                  if tools.is_apple_os(self.settings.os):
                      libsuffix = "_debug"        def _get_corrected_reqs(requires):
                  reqs = []
                  for r in requires:
                      reqs.append(r if "::" in r else "qt%s" % r)
                  return reqs        def _create_module(module, requires=[]):
                  componentname = "qt%s" % module
                  assert componentname not in self.cpp_info.components, "Module %s already present in self.cpp_info.components" % module
                  self.cpp_info.components[componentname].names["cmake_find_package"] = module
                  self.cpp_info.components[componentname].names["cmake_find_package_multi"] = module
                  if module.endswith("Private"):
                      libname = module[:-7]
                  else:
                      libname = module
                  self.cpp_info.components[componentname].libs = ["Qt6%s%s" % (libname, libsuffix)]
                  self.cpp_info.components[componentname].includedirs = ["include", os.path.join("include", "Qt%s" % module)]
                  self.cpp_info.components[componentname].defines = ["QT_%s_LIB" % module.upper()]
                  if module != "Core" and "Core" not in requires:
                      requires.append("Core")
                  self.cpp_info.components[componentname].requires = _get_corrected_reqs(requires)        def _create_plugin(pluginname, libname, type, requires):
                  componentname = "qt%s" % pluginname
                  assert componentname not in self.cpp_info.components, "Plugin %s already present in self.cpp_info.components" % pluginname
                  self.cpp_info.components[componentname].names["cmake_find_package"] = pluginname
                  self.cpp_info.components[componentname].names["cmake_find_package_multi"] = pluginname
                  if not self.options.shared:
                      self.cpp_info.components[componentname].libs = [libname + libsuffix]
                  self.cpp_info.components[componentname].libdirs = [os.path.join("res", "archdatadir", "plugins", type)]
                  self.cpp_info.components[componentname].includedirs = []
                  if "Core" not in requires:
                      requires.append("Core")
                  self.cpp_info.components[componentname].requires = _get_corrected_reqs(requires)        core_reqs = ["zlib::zlib"]
              if self.options.with_pcre2:
                  core_reqs.append("pcre2::pcre2")
              if self.options.with_doubleconversion:
                  core_reqs.append("double-conversion::double-conversion")
              if self.options.get_safe("with_icu", False):
                  core_reqs.append("icu::icu")
              if self.options.with_zstd:
                  core_reqs.append("zstd::zstd")        _create_module("Core", core_reqs)
              if self.settings.compiler == "Visual Studio":
                  if tools.Version(self.version) >= "6.2.0":
                      self.cpp_info.components["qtCore"].cxxflags.append("-Zc:__cplusplus")
                      self.cpp_info.components["qtCore"].system_libs.append("synchronization")
                  if tools.Version(self.version) >= "6.2.1":
                      self.cpp_info.components["qtCore"].system_libs.append("runtimeobject")
              self.cpp_info.components["qtPlatform"].names["cmake_find_package"] = "Platform"
              self.cpp_info.components["qtPlatform"].names["cmake_find_package_multi"] = "Platform"
              if tools.Version(self.version) < "6.1.0":
                  self.cpp_info.components["qtCore"].libs.append("Qt6Core_qobject%s" % libsuffix)
              if self.options.gui:
                  gui_reqs = []
                  if self.options.with_dbus:
                      gui_reqs.append("DBus")
                  #if self.options.with_freetype:
                  #    gui_reqs.append("freetype::freetype")
                  if self.options.with_libpng:
                      gui_reqs.append("libpng::libpng")
                  if self.options.get_safe("with_fontconfig", False):
                      gui_reqs.append("fontconfig::fontconfig")
                  if self.settings.os in ["Linux", "FreeBSD"]:
                      gui_reqs.append("xorg::xorg")
                      if not tools.cross_building(self, skip_x64_x86=True):
                          gui_reqs.append("xkbcommon::xkbcommon")
                  if self.settings.os != "Windows" and self.options.get_safe("opengl", "no") != "no":
                      gui_reqs.append("opengl::opengl")
                  if self.options.get_safe("with_vulkan", False):
                      gui_reqs.append("vulkan-loader::vulkan-loader")
                      if tools.is_apple_os(self.settings.os):
                          gui_reqs.append("moltenvk::moltenvk")
                  if self.options.with_harfbuzz:
                      gui_reqs.append("harfbuzz::harfbuzz")
                  if self.options.with_libjpeg == "libjpeg-turbo":
                      gui_reqs.append("libjpeg-turbo::libjpeg-turbo")
                  if self.options.with_libjpeg == "libjpeg":
                      gui_reqs.append("libjpeg::libjpeg")
                  _create_module("Gui", gui_reqs)            if self.settings.os == "Windows":
                      _create_plugin("QWindowsIntegrationPlugin", "qwindows", "platforms", ["Core", "Gui"])
                      self.cpp_info.components["qtQWindowsIntegrationPlugin"].system_libs = ["advapi32", "dwmapi", "gdi32", "imm32",
                          "ole32", "oleaut32", "shell32", "shlwapi", "user32", "winmm", "winspool", "wtsapi32"]
                  elif self.settings.os == "Android":
                      _create_plugin("QAndroidIntegrationPlugin", "qtforandroid", "platforms", ["Core", "Gui"])
                      self.cpp_info.components["qtQAndroidIntegrationPlugin"].system_libs = ["android", "jnigraphics"]
                  elif self.settings.os == "Macos":
                      _create_plugin("QCocoaIntegrationPlugin", "qcocoa", "platforms", ["Core", "Gui"])
                      self.cpp_info.components["QCocoaIntegrationPlugin"].frameworks = ["AppKit", "Carbon", "CoreServices", "CoreVideo",
                          "IOKit", "IOSurface", "Metal", "QuartzCore"]
                  elif self.settings.os in ["iOS", "tvOS"]:
                      _create_plugin("QIOSIntegrationPlugin", "qios", "platforms", [])
                      self.cpp_info.components["QIOSIntegrationPlugin"].frameworks = ["AudioToolbox", "Foundation", "Metal",
                          "QuartzCore", "UIKit"]
                  elif self.settings.os == "watchOS":
                      _create_plugin("QMinimalIntegrationPlugin", "qminimal", "platforms", [])
                  elif self.settings.os == "Emscripten":
                      _create_plugin("QWasmIntegrationPlugin", "qwasm", "platforms", ["Core", "Gui"])
                  else:
                      _create_module("XcbQpaPrivate", ["xkbcommon::libxkbcommon-x11", "xorg::xorg"])
                      _create_plugin("QXcbIntegrationPlugin", "qxcb", "platforms", ["Core", "Gui", "XcbQpaPrivate"])        if self.options.with_sqlite3:
                  _create_plugin("QSQLiteDriverPlugin", "qsqlite", "sqldrivers", ["sqlite3::sqlite3"])
              if self.options.with_pq:
                  _create_plugin("QPSQLDriverPlugin", "qsqlpsql", "sqldrivers", ["libpq::libpq"])
              if self.options.with_odbc:
                  if self.settings.os != "Windows":
                      _create_plugin("QODBCDriverPlugin", "qsqlodbc", "sqldrivers", ["odbc::odbc"])
              networkReqs = []
              if self.options.openssl:
                  networkReqs.append("openssl::openssl")
              if self.options.with_brotli:
                  networkReqs.append("brotli::brotli")
              _create_module("Network", networkReqs)
              _create_module("Sql")
              _create_module("Test")
              if self.options.widgets:
                  _create_module("Widgets", ["Gui"])
              if self.options.gui and self.options.widgets:
                  _create_module("PrintSupport", ["Gui", "Widgets"])
              if self.options.get_safe("opengl", "no") != "no" and self.options.gui:
                  _create_module("OpenGL", ["Gui"])
              if self.options.widgets and self.options.get_safe("opengl", "no") != "no":
                  _create_module("OpenGLWidgets", ["OpenGL", "Widgets"])
              if self.options.with_dbus:
                  _create_module("DBus", ["dbus::dbus"])
              _create_module("Concurrent")
              _create_module("Xml")        if self.options.qt5compat:
                  _create_module("Core5Compat")
              
              # since https://github.com/qt/qtdeclarative/commit/4fb84137f1c0a49d64b8bef66fef8a4384cc2a68
              qt_quick_enabled = self.options.gui and (tools.Version(self.version) < "6.2.0" or self.options.qtshadertools)        if self.options.qtdeclarative:
                  _create_module("Qml", ["Network"])
                  self.cpp_info.components["qtQml"].build_modules["cmake_find_package"].append(self._cmake_qt6_private_file("Qml"))
                  self.cpp_info.components["qtQml"].build_modules["cmake_find_package_multi"].append(self._cmake_qt6_private_file("Qml"))
                  _create_module("QmlModels", ["Qml"])
                  self.cpp_info.components["qtQmlImportScanner"].names["cmake_find_package"] = "QmlImportScanner" # this is an alias for Qml and there to integrate with existing consumers
                  self.cpp_info.components["qtQmlImportScanner"].names["cmake_find_package_multi"] = "QmlImportScanner"
                  self.cpp_info.components["qtQmlImportScanner"].requires = _get_corrected_reqs(["Qml"])
                  if qt_quick_enabled:
                      _create_module("Quick", ["Gui", "Qml", "QmlModels"])
                      if self.options.widgets:
                          _create_module("QuickWidgets", ["Gui", "Qml", "Quick", "Widgets"])
                      _create_module("QuickShapes", ["Gui", "Qml", "Quick"])
                  _create_module("QmlWorkerScript", ["Qml"])
                  _create_module("QuickTest", ["Test"])        if self.options.qttools and self.options.gui and self.options.widgets:
                  self.cpp_info.components["qtLinguistTools"].names["cmake_find_package"] = "LinguistTools"
                  self.cpp_info.components["qtLinguistTools"].names["cmake_find_package_multi"] = "LinguistTools"
                  _create_module("UiPlugin", ["Gui", "Widgets"])
                  self.cpp_info.components["qtUiPlugin"].libs = [] # this is a collection of abstract classes, so this is header-only
                  self.cpp_info.components["qtUiPlugin"].libdirs = []
                  _create_module("UiTools", ["UiPlugin", "Gui", "Widgets"])
                  _create_module("Designer", ["Gui", "UiPlugin", "Widgets", "Xml"])
                  _create_module("Help", ["Gui", "Sql", "Widgets"])        if self.options.qtquick3d and qt_quick_enabled:
                  _create_module("Quick3DUtils", ["Gui"])
                  _create_module("Quick3DAssetImport", ["Gui", "Qml", "Quick3DUtils"])
                  _create_module("Quick3DRuntimeRender", ["Gui", "Quick", "Quick3DAssetImport", "Quick3DUtils", "ShaderTools"])
                  _create_module("Quick3D", ["Gui", "Qml", "Quick", "Quick3DRuntimeRender"])        if (self.options.get_safe("qtquickcontrols2") or \
                  (self.options.qtdeclarative and tools.Version(self.version) >= "6.2.0")) and qt_quick_enabled:
                  _create_module("QuickControls2", ["Gui", "Quick"])
                  _create_module("QuickTemplates2", ["Gui", "Quick"])        if self.options.qtshadertools and self.options.gui:
                  _create_module("ShaderTools", ["Gui"])        if self.options.qtsvg and self.options.gui:
                  _create_module("Svg", ["Gui"])
                  if self.options.widgets:
                      _create_module("SvgWidgets", ["Gui", "Svg", "Widgets"])        if self.options.qtwayland and self.options.gui:
                  _create_module("WaylandClient", ["Gui", "wayland::wayland-client"])
                  _create_module("WaylandCompositor", ["Gui", "wayland::wayland-server"])        if self.options.get_safe("qtactiveqt") and self.settings.os == "Windows":
                  _create_module("AxBase", ["Gui", "Widgets"])
                  _create_module("AxServer", ["AxBase"])
                  self.cpp_info.components["qtAxServer"].system_libs.append("shell32")
                  self.cpp_info.components["qtAxServer"].defines.append("QAXSERVER")
                  _create_module("AxContainer", ["AxBase"])
              if self.options.get_safe("qtcharts"):
                  _create_module("Charts", ["Gui", "Widgets"])
              if self.options.get_safe("qtdatavis3d") and qt_quick_enabled:
                  _create_module("DataVisualization", ["Gui", "OpenGL", "Qml", "Quick"])
              if self.options.get_safe("qtlottie"):
                  _create_module("Bodymovin", ["Gui"])
              if self.options.get_safe("qtscxml"):
                  _create_module("StateMachine")
                  _create_module("StateMachineQml", ["StateMachine", "Qml"])
                  _create_module("Scxml")
                  _create_plugin("QScxmlEcmaScriptDataModelPlugin", "qscxmlecmascriptdatamodel", "scxmldatamodel", ["Scxml", "Qml"])
                  _create_module("ScxmlQml", ["Scxml", "Qml"])
              if self.options.get_safe("qtvirtualkeyboard") and qt_quick_enabled:
                  _create_module("VirtualKeyboard", ["Gui", "Qml", "Quick"])
                  _create_plugin("QVirtualKeyboardPlugin", "qtvirtualkeyboardplugin", "platforminputcontexts", ["Gui", "Qml", "VirtualKeyboard"])
                  _create_plugin("QtVirtualKeyboardHangulPlugin", "qtvirtualkeyboard_hangul", "virtualkeyboard", ["Gui", "Qml", "VirtualKeyboard"])
                  _create_plugin("QtVirtualKeyboardMyScriptPlugin", "qtvirtualkeyboard_myscript", "virtualkeyboard", ["Gui", "Qml", "VirtualKeyboard"])
                  _create_plugin("QtVirtualKeyboardThaiPlugin", "qtvirtualkeyboard_thai", "virtualkeyboard", ["Gui", "Qml", "VirtualKeyboard"])
              if self.options.get_safe("qt3d"):
                  _create_module("3DCore", ["Gui", "Network"])
                  _create_module("3DRender", ["3DCore", "OpenGL"])
                  _create_module("3DAnimation", ["3DCore", "3DRender", "Gui"])
                  _create_module("3DInput", ["3DCore", "Gui"])
                  _create_module("3DLogic", ["3DCore", "Gui"])
                  _create_module("3DExtras", ["Gui", "3DCore", "3DInput", "3DLogic", "3DRender"])
                  _create_plugin("DefaultGeometryLoaderPlugin", "defaultgeometryloader", "geometryloaders", ["3DCore", "3DRender", "Gui"])
                  _create_plugin("fbxGeometryLoaderPlugin", "fbxgeometryloader", "geometryloaders", ["3DCore", "3DRender", "Gui"])
                  if qt_quick_enabled:
                      _create_module("3DQuick", ["3DCore", "Gui", "Qml", "Quick"])
                      _create_module("3DQuickAnimation", ["3DAnimation", "3DCore", "3DQuick", "3DRender", "Gui", "Qml"])
                      _create_module("3DQuickExtras", ["3DCore", "3DExtras", "3DInput", "3DQuick", "3DRender", "Gui", "Qml"])
                      _create_module("3DQuickInput", ["3DCore", "3DInput", "3DQuick", "Gui", "Qml"])
                      _create_module("3DQuickRender", ["3DCore", "3DQuick", "3DRender", "Gui", "Qml"])
                      _create_module("3DQuickScene2D", ["3DCore", "3DQuick", "3DRender", "Gui", "Qml"])
              if self.options.get_safe("qtimageformats"):
                  _create_plugin("ICNSPlugin", "qicns", "imageformats", ["Gui"])
                  _create_plugin("QJp2Plugin", "qjp2", "imageformats", ["Gui"])
                  _create_plugin("QMacHeifPlugin", "qmacheif", "imageformats", ["Gui"])
                  _create_plugin("QMacJp2Plugin", "qmacjp2", "imageformats", ["Gui"])
                  _create_plugin("QMngPlugin", "qmng", "imageformats", ["Gui"])
                  _create_plugin("QTgaPlugin", "qtga", "imageformats", ["Gui"])
                  _create_plugin("QTiffPlugin", "qtiff", "imageformats", ["Gui"])
                  _create_plugin("QWbmpPlugin", "qwbmp", "imageformats", ["Gui"])
                  _create_plugin("QWebpPlugin", "qwebp", "imageformats", ["Gui"])
              if self.options.get_safe("qtnetworkauth"):
                  _create_module("NetworkAuth", ["Network"])
              if self.options.get_safe("qtcoap"):
                  _create_module("Coap", ["Network"])
              if self.options.get_safe("qtmqtt"):
                  _create_module("Mqtt", ["Network"])
              if self.options.get_safe("qtopcua"):
                  _create_module("OpcUa", ["Network"])
                  _create_plugin("QOpen62541Plugin", "open62541_backend", "opcua", ["Network", "OpcUa"])
                  _create_plugin("QUACppPlugin", "uacpp_backend", "opcua", ["Network", "OpcUa"])        if self.options.get_safe("qtmultimedia"):
                  multimedia_reqs = ["Network", "Gui"]
                  if self.options.get_safe("with_libalsa", False):
                      multimedia_reqs.append("libalsa::libalsa")
                  if self.options.with_openal:
                      multimedia_reqs.append("openal::openal")
                  if self.options.get_safe("with_pulseaudio", False):
                      multimedia_reqs.append("pulseaudio::pulse")
                  _create_module("Multimedia", multimedia_reqs)
                  _create_module("MultimediaWidgets", ["Multimedia", "Widgets", "Gui"])
                  if self.options.qtdeclarative and qt_quick_enabled:
                      _create_module("MultimediaQuick", ["Multimedia", "Quick"])
                  _create_plugin("QM3uPlaylistPlugin", "qtmultimedia_m3u", "playlistformats", [])
                  if self.options.with_gstreamer:
                      _create_module("MultimediaGstTools", ["Multimedia", "MultimediaWidgets", "Gui", "gst-plugins-base::gst-plugins-base"])
                      _create_plugin("QGstreamerAudioDecoderServicePlugin", "gstaudiodecoder", "mediaservice", [])
                      _create_plugin("QGstreamerCaptureServicePlugin", "gstmediacapture", "mediaservice", [])
                      _create_plugin("QGstreamerPlayerServicePlugin", "gstmediaplayer", "mediaservice", [])
                  if self.settings.os == "Linux":
                      _create_plugin("CameraBinServicePlugin", "gstcamerabin", "mediaservice", [])
                      _create_plugin("QAlsaPlugin", "qtaudio_alsa", "audio", [])
                  if self.settings.os == "Windows":
                      _create_plugin("AudioCaptureServicePlugin", "qtmedia_audioengine", "mediaservice", [])
                      _create_plugin("DSServicePlugin", "dsengine", "mediaservice", [])
                      _create_plugin("QWindowsAudioPlugin", "qtaudio_windows", "audio", [])
                  if self.settings.os == "Macos":
                      _create_plugin("AudioCaptureServicePlugin", "qtmedia_audioengine", "mediaservice", [])
                      _create_plugin("AVFMediaPlayerServicePlugin", "qavfmediaplayer", "mediaservice", [])
                      _create_plugin("AVFServicePlugin", "qavfcamera", "mediaservice", [])
                      _create_plugin("CoreAudioPlugin", "qtaudio_coreaudio", "audio", [])        if (self.options.get_safe("qtlocation") and tools.Version(self.version) < "6.2.2") or \
                  (self.options.get_safe("qtpositioning") and tools.Version(self.version) >= "6.2.2"):
                      _create_module("Positioning")
                      _create_plugin("QGeoPositionInfoSourceFactoryGeoclue2", "qtposition_geoclue2", "position", [])
                      _create_plugin("QGeoPositionInfoSourceFactoryPoll", "qtposition_positionpoll", "position", [])        if self.options.get_safe("qtsensors"):
                  _create_module("Sensors")
                  _create_plugin("genericSensorPlugin", "qtsensors_generic", "sensors", [])
                  _create_plugin("IIOSensorProxySensorPlugin", "qtsensors_iio-sensor-proxy", "sensors", [])
                  if self.settings.os == "Linux":
                      _create_plugin("LinuxSensorPlugin", "qtsensors_linuxsys", "sensors", [])
                  _create_plugin("QtSensorGesturePlugin", "qtsensorgestures_plugin", "sensorgestures", [])
                  _create_plugin("QShakeSensorGesturePlugin", "qtsensorgestures_shakeplugin", "sensorgestures", [])        if self.options.get_safe("qtconnectivity"):
                  _create_module("Bluetooth", ["Network"])
                  _create_module("Nfc", [])        if self.options.get_safe("qtserialport"):
                  _create_module("SerialPort")        if self.options.get_safe("qtserialbus"):
                  _create_module("SerialBus", ["SerialPort"])
                  _create_plugin("PassThruCanBusPlugin", "qtpassthrucanbus", "canbus", [])
                  _create_plugin("PeakCanBusPlugin", "qtpeakcanbus", "canbus", [])
                  _create_plugin("SocketCanBusPlugin", "qtsocketcanbus", "canbus", [])
                  _create_plugin("TinyCanBusPlugin", "qttinycanbus", "canbus", [])
                  _create_plugin("VirtualCanBusPlugin", "qtvirtualcanbus", "canbus", [])        if self.options.get_safe("qtwebsockets"):
                  _create_module("WebSockets", ["Network"])        if self.options.get_safe("qtwebchannel"):
                  _create_module("WebChannel", ["Qml"])        if self.options.get_safe("qtwebengine") and qt_quick_enabled:
                  webenginereqs = ["Gui", "Quick", "WebChannel", "Positioning"]
                  if self.settings.os == "Linux":
                      webenginereqs.extend(["expat::expat", "opus::libopus", "xorg-proto::xorg-proto", "libxshmfence::libxshmfence", \
                                            "nss::nss", "libdrm::libdrm"])
                  _create_module("WebEngineCore", webenginereqs)
                  _create_module("WebEngineQuick", ["WebEngineCore"])
                  _create_module("WebEngineWidgets", ["WebEngineCore", "Quick", "PrintSupport", "Widgets", "Gui", "Network"])        if self.options.get_safe("qtremoteobjects"):
                  _create_module("RemoteObjects")        if self.options.get_safe("qtwebview"):
                  _create_module("WebView", ["Core", "Gui"])        if self.settings.os in ["Windows", "iOS"]:
                  if self.settings.os == "Windows":
                      self.cpp_info.components["qtEntryPointImplementation"].names["cmake_find_package"] = "EntryPointImplementation"
                      self.cpp_info.components["qtEntryPointImplementation"].names["cmake_find_package_multi"] = "EntryPointImplementation"
                      self.cpp_info.components["qtEntryPointImplementation"].libs = ["Qt6EntryPoint%s" % libsuffix]
                      self.cpp_info.components["qtEntryPointImplementation"].system_libs = ["shell32"]                if self.settings.compiler == "gcc":
                          self.cpp_info.components["qtEntryPointMinGW32"].names["cmake_find_package"] = "EntryPointMinGW32"
                          self.cpp_info.components["qtEntryPointMinGW32"].names["cmake_find_package_multi"] = "EntryPointMinGW32"
                          self.cpp_info.components["qtEntryPointMinGW32"].system_libs = ["mingw32"]
                          self.cpp_info.components["qtEntryPointMinGW32"].requires = ["qtEntryPointImplementation"]            self.cpp_info.components["qtEntryPointPrivate"].names["cmake_find_package"] = "EntryPointPrivate"
                  self.cpp_info.components["qtEntryPointPrivate"].names["cmake_find_package_multi"] = "EntryPointPrivate"
                  if self.settings.os == "Windows":
                      if self.settings.compiler == "gcc":
                          self.cpp_info.components["qtEntryPointPrivate"].defines.append("QT_NEEDS_QMAIN")
                          self.cpp_info.components["qtEntryPointPrivate"].requires.append("qtEntryPointMinGW32")
                      else:
                          self.cpp_info.components["qtEntryPointPrivate"].requires.append("qtEntryPointImplementation")
                  if self.settings.os == "iOS":
                      self.cpp_info.components["qtEntryPointPrivate"].exelinkflags.append("-Wl,-e,_qt_main_wrapper")        if self.settings.os != "Windows":
                  self.cpp_info.components["qtCore"].cxxflags.append("-fPIC")        if not self.options.shared:
                  if self.settings.os == "Windows":
                      self.cpp_info.components["qtCore"].system_libs.append("version")  # qtcore requires "GetFileVersionInfoW" and "VerQueryValueW" which are in "Version.lib" library
                      self.cpp_info.components["qtCore"].system_libs.append("winmm")    # qtcore requires "__imp_timeSetEvent" which is in "Winmm.lib" library
                      self.cpp_info.components["qtCore"].system_libs.append("netapi32") # qtcore requires "NetApiBufferFree" which is in "Netapi32.lib" library
                      self.cpp_info.components["qtCore"].system_libs.append("userenv")  # qtcore requires "__imp_GetUserProfileDirectoryW " which is in "UserEnv.Lib" library
                      self.cpp_info.components["qtCore"].system_libs.append("ws2_32")  # qtcore requires "WSAStartup " which is in "Ws2_32.Lib" library
                      self.cpp_info.components["qtGui"].system_libs.append("dwrite")  # qtcore requires "WSAStartup " which is in "Ws2_32.Lib" library
                      self.cpp_info.components["qtNetwork"].system_libs.append("dnsapi")  # qtnetwork from qtbase requires "DnsFree" which is in "Dnsapi.lib" library
                      self.cpp_info.components["qtNetwork"].system_libs.append("iphlpapi")
                      self.cpp_info.components["qtNetwork"].system_libs.extend(["winhttp", "secur32"])
                  if self.settings.os == "Macos":
                      self.cpp_info.components["qtCore"].frameworks.append("IOKit")     # qtcore requires "_IORegistryEntryCreateCFProperty", "_IOServiceGetMatchingService" and much more which are in "IOKit" framework
                      self.cpp_info.components["qtCore"].frameworks.append("Cocoa")     # qtcore requires "_OBJC_CLASS_$_NSApplication" and more, which are in "Cocoa" framework
                      self.cpp_info.components["qtCore"].frameworks.append("Security")  # qtcore requires "_SecRequirementCreateWithString" and more, which are in "Security" framework
                      self.cpp_info.components["qtNetwork"].frameworks.append("SystemConfiguration")
                      self.cpp_info.components["qtNetwork"].frameworks.append("GSS")
                      if self.options.gui and self.options.widgets:
                          self.cpp_info.components["qtPrintSupport"].system_libs.append("cups")        self.cpp_info.components["qtCore"].builddirs.append(os.path.join("res","archdatadir","bin"))
              self.cpp_info.components["qtCore"].build_modules["cmake_find_package"].append(self._cmake_executables_file)
              self.cpp_info.components["qtCore"].build_modules["cmake_find_package_multi"].append(self._cmake_executables_file)
              self.cpp_info.components["qtCore"].build_modules["cmake_find_package"].append(self._cmake_qt6_private_file("Core"))
              self.cpp_info.components["qtCore"].build_modules["cmake_find_package_multi"].append(self._cmake_qt6_private_file("Core"))
              if self.settings.os in ["Windows", "iOS"]:
                  self.cpp_info.components["qtCore"].build_modules["cmake_find_package"].append(self._cmake_entry_point_file)
                  self.cpp_info.components["qtCore"].build_modules["cmake_find_package_multi"].append(self._cmake_entry_point_file)        self.cpp_info.components["qtGui"].build_modules["cmake_find_package"].append(self._cmake_qt6_private_file("Gui"))
              self.cpp_info.components["qtGui"].build_modules["cmake_find_package_multi"].append(self._cmake_qt6_private_file("Gui"))        for m in os.listdir(os.path.join("lib", "cmake")):
                  module = os.path.join("lib", "cmake", m, "%sMacros.cmake" % m)
                  component_name = m.replace("Qt6", "qt")
                  if component_name == "qt":
                      component_name = "qtCore"
                  if os.path.isfile(module):
                      self.cpp_info.components[component_name].build_modules["cmake_find_package"].append(module)
                      self.cpp_info.components[component_name].build_modules["cmake_find_package_multi"].append(module)            helper_modules = glob.glob(os.path.join(self.package_folder, "lib", "cmake", m, "QtPublic*Helpers.cmake"))
                  self.cpp_info.components[component_name].build_modules["cmake_find_package"].extend(helper_modules)
                  self.cpp_info.components[component_name].build_modules["cmake_find_package_multi"].extend(helper_modules)
                  self.cpp_info.components[component_name].builddirs.append(os.path.join("lib", "cmake", m))        objects_dirs = glob.glob(os.path.join(self.package_folder, "lib", "objects-*/"))
              for object_dir in objects_dirs:
                  for m in os.listdir(object_dir):
                      component = "qt" + m[:m.find("_")]
                      if component not in self.cpp_info.components:
                          continue
                      submodules_dir = os.path.join(object_dir, m)
                      for sub_dir in os.listdir(submodules_dir):
                          submodule_dir = os.path.join(submodules_dir, sub_dir)
                          obj_files = [os.path.join(submodule_dir, file) for file in os.listdir(submodule_dir)]
                          self.cpp_info.components[component].exelinkflags.extend(obj_files)
                          self.cpp_info.components[component].sharedlinkflags.extend(obj_files)
      

      With following output 

      PS C:\Users\G91WOQS\devel\conan\conan-center-index\recipes\qt\6.x.x> conan create . qt/6.2.3@test/test -sbuild_type=Debug  -oqtmultimedia=True -oqtserialport=True  -oqtimageformats=True -o qtpositioning=True
      ['qtsvg', 'qtdeclarative', 'qttools', 'qttranslations', 'qtdoc', 'qtwayland', 'qtquickcontrols2', 'qtquicktimeline', 'qtquick3d', 'qtshadertools', 'qt5compat', 'qtactiveqt', 'qtcharts', 'qtdatavis3d', 'qtlottie', 'qtscxml', 'qtvirtualkeyboard', 'qt3d', 'qtimageformats', 'qtnetworkauth', 'qtcoap', 'qtmqtt', 'qtopcua', 'qtmultimedia', 'qtlocation', 'qtsensors', 'qtconnectivity', 'qtserialbus', 'qtserialport', 'qtwebsockets', 'qtwebchannel', 'qtwebengine', 'qtwebview', 'qtremoteobjects', 'qtpositioning']
      Exporting package recipe
      qt/6.2.3@test/test exports: File 'conandata.yml' found. Exporting it...
      qt/6.2.3@test/test exports: Copied 1 '.yml' file: conandata.yml
      qt/6.2.3@test/test: Calling export()
      qt/6.2.3@test/test export() method: Copied 1 '.conf' file: qtmodules6.2.3.conf
      qt/6.2.3@test/test: Calling export_sources()
      qt/6.2.3@test/test export_sources() method: Copied 4 '.diff' files: 32451d5.diff, qt6-pri-helpers-fix.diff, c72097e.diff, 138a720.diff
      qt/6.2.3@test/test: A new conanfile.py version was exported
      qt/6.2.3@test/test: Folder: C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\export
      qt/6.2.3@test/test: Using the exported files summary hash as the recipe revision: 8173be90cede52c5ed2c84e2deb6ab51
      qt/6.2.3@test/test: Exported revision: 8173be90cede52c5ed2c84e2deb6ab51
      Configuration:
      [settings]
      arch=x86_64
      arch_build=x86_64
      build_type=Debug
      compiler=Visual Studio
      compiler.cppstd=20
      compiler.runtime=MDd
      compiler.version=16
      os=Windows
      os_build=Windows
      [options]
      qtimageformats=True
      qtmultimedia=True
      qtpositioning=True
      qtserialport=True
      [build_requires]
      [env]['qtsvg', 'qtdeclarative', 'qttools', 'qttranslations', 'qtdoc', 'qtwayland', 'qtquickcontrols2', 'qtquicktimeline', 'qtquick3d', 'qtshadertools', 'qt5compat', 'qtactiveqt', 'qtcharts', 'qtdatavis3d', 'qtlottie', 'qtscxml', 'qtvirtualkeyboard', 'qt3d', 'qtimageformats', 'qtnetworkauth', 'qtcoap', 'qtmqtt', 'qtopcua', 'qtmultimedia', 'qtlocation', 'qtsensors', 'qtconnectivity', 'qtserialbus', 'qtserialport', 'qtwebsockets', 'qtwebchannel', 'qtwebengine', 'qtwebview', 'qtremoteobjects', 'qtpositioning']
      qt/6.2.3@test/test: Forced build from source
      Installing package: qt/6.2.3@test/test
      Requirements
          openssl/1.1.1m from 'conancenter' - Cache
          qt/6.2.3@test/test from local cache - Cache
          zlib/1.2.11 from 'conancenter' - Cache
      Packages
          openssl/1.1.1m:d057732059ea44a47760900cb5e4855d2bea8714 - Cache
          qt/6.2.3@test/test:35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e - Build
          zlib/1.2.11:d057732059ea44a47760900cb5e4855d2bea8714 - Cache
      Build requirements
          cmake/3.22.0 from 'conancenter' - Cache
          ninja/1.10.2 from 'conancenter' - Cache
          pkgconf/1.7.4 from 'conancenter' - Cache
          strawberryperl/5.30.0.1 from 'conancenter' - Cache
      Build requirements packages
          cmake/3.22.0:01edd76db8e16db9b38c3cca44ec466a9444c388 - Cache
          ninja/1.10.2:01edd76db8e16db9b38c3cca44ec466a9444c388 - Cache
          pkgconf/1.7.4:d057732059ea44a47760900cb5e4855d2bea8714 - Cache
          strawberryperl/5.30.0.1:ca33edce272a279b24f87dc0d4cf5bbdcffbc187 - CacheInstalling (downloading, building) binaries...
      cmake/3.22.0: Already installed!
      cmake/3.22.0: Appending PATH environment variable: C:\Users\G91WOQS\.conan\data\cmake\3.22.0\_\_\package\01edd76db8e16db9b38c3cca44ec466a9444c388\bin
      ninja/1.10.2: Already installed!
      openssl/1.1.1m: Already installed!
      pkgconf/1.7.4: Already installed!
      pkgconf/1.7.4: Appending PATH env var: C:\Users\G91WOQS\.conan\data\pkgconf\1.7.4\_\_\package\d057732059ea44a47760900cb5e4855d2bea8714\bin
      pkgconf/1.7.4: Setting PKG_CONFIG env var: C:/Users/G91WOQS/.conan/data/pkgconf/1.7.4/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/bin/pkgconf.exe
      pkgconf/1.7.4: Appending AUTOMAKE_CONAN_INCLUDES env var: /c/users/g91woqs/.conan/data/pkgconf/1.7.4/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/bin/aclocal
      strawberryperl/5.30.0.1: Already installed!
      strawberryperl/5.30.0.1: Appending PATH environment variable: C:\.conan\1c415e\1\bin
      zlib/1.2.11: Already installed!
      qt/6.2.3@test/test: Applying build-requirement: cmake/3.22.0
      qt/6.2.3@test/test: Applying build-requirement: ninja/1.10.2
      qt/6.2.3@test/test: Applying build-requirement: pkgconf/1.7.4
      qt/6.2.3@test/test: Applying build-requirement: strawberryperl/5.30.0.1
      qt/6.2.3@test/test: Configuring sources in C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\source
      Downloading qt-everywhere-src-6.2.3.tar.xz completed [646229.38k]qt/6.2.3@test/test: Building your package in C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e
      qt/6.2.3@test/test: Generator cmake_find_package created Findcmake.cmake
      qt/6.2.3@test/test: Generator cmake_find_package created Findninja.cmake
      qt/6.2.3@test/test: Generator cmake_find_package created Findpkgconf.cmake
      qt/6.2.3@test/test: Generator cmake_find_package created Findstrawberryperl.cmake
      qt/6.2.3@test/test: Generator cmake_find_package created FindZLIB.cmake
      qt/6.2.3@test/test: Generator cmake_find_package created FindOpenSSL.cmake
      qt/6.2.3@test/test: Generator cmake created conanbuildinfo.cmake
      qt/6.2.3@test/test: Generator pkg_config created cmake.pc
      qt/6.2.3@test/test: Generator pkg_config created ninja.pc
      qt/6.2.3@test/test: Generator pkg_config created libpkgconf.pc
      qt/6.2.3@test/test: Generator pkg_config created strawberryperl.pc
      qt/6.2.3@test/test: Generator pkg_config created zlib.pc
      qt/6.2.3@test/test: Generator pkg_config created libcrypto.pc
      qt/6.2.3@test/test: Generator pkg_config created libssl.pc
      qt/6.2.3@test/test: Generator pkg_config created openssl.pc
      qt/6.2.3@test/test: Aggregating env generators
      qt/6.2.3@test/test: Calling build()
      **********************************************************************
      ** Visual Studio 2019 Developer Command Prompt v16.11.4
      ** Copyright (c) 2021 Microsoft Corporation
      **********************************************************************
      [vcvarsall.bat] Environment initialized for: 'x64'
      Conan:vcvars already set
      -- The CXX compiler identification is MSVC 19.29.30136.0
      -- The C compiler identification is MSVC 19.29.30136.0
      -- The ASM compiler identification is MSVC
      -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/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/Professional/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/Professional/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped
      -- Detecting C compile features
      -- Detecting C compile features - done
      -- Conan: called by CMake conan helper
      -- Conan: called inside local cache
      -- Conan: Adjusting output directories
      -- Conan: Using cmake global configuration
      -- Conan: Adjusting language standard
      -- Conan setting CPP STANDARD: 20 WITH EXTENSIONS OFF
      Checking dependencies of 'qtbase'
      Checking dependencies of 'qtshadertools'
      Checking dependencies of 'qtimageformats'
      Checking dependencies of 'qtmultimedia'
      Skipping optional dependency 'qtdeclarative' of 'qtmultimedia', because building 'qtdeclarative' was explicitly disabled.
      Checking dependencies of 'qtserialport'
      Checking dependencies of 'qtpositioning'
      Skipping optional dependency 'qtdeclarative' of 'qtpositioning', because building 'qtdeclarative' was explicitly disabled.
      Configuring 'qtbase'
      -- Check for feature set changes
      -- Building architecture extraction project with the following CMake arguments:
          -DCMAKE_OBJCOPY=C:/.conan/1c415e/1/bin/objcopy.exe
          -DCMAKE_C_STANDARD=11
          -DCMAKE_CXX_STANDARD=17
          -DCMAKE_MODULE_PATH:STRING=C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/source/qt6/qtbase/cmake/platforms
      -- Extracting architecture info from C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/qtbase/config.tests/arch/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.22.0"
      -- CMAKE_HOST_SYSTEM: "Windows-10.0.19042"
      -- CMAKE_HOST_SYSTEM_NAME: "Windows"
      -- CMAKE_HOST_SYSTEM_VERSION: "10.0.19042"
      -- CMAKE_HOST_SYSTEM_PROCESSOR: "AMD64"
      -- CMAKE_SYSTEM: "Windows"
      -- CMAKE_SYSTEM_NAME: "Windows"
      -- CMAKE_SYSTEM_VERSION: "10.0.19042"
      -- CMAKE_SYSTEM_PROCESSOR: "AMD64"
      -- CMAKE_CROSSCOMPILING: "FALSE"
      -- CMAKE_C_COMPILER: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe" (19.29.30136.0)
      -- CMAKE_CXX_COMPILER: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe" (19.29.30136.0)
      -- MSVC_VERSION: "1929"
      -- MSVC_TOOLSET_VERSION: "142"
      -- Conan: Using autogenerated FindZLIB.cmake
      -- Found ZLIB: 1.2.11 (found suitable version "1.2.11", minimum required is "1.0.8")
      -- Library zlib found C:/Users/G91WOQS/.conan/data/zlib/1.2.11/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/zlib.lib
      -- Found: C:/Users/G91WOQS/.conan/data/zlib/1.2.11/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/zlib.lib
      -- 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")
      -- Checking for module 'libudev'
      --   Package 'libudev', required by 'virtual:world', not found
      -- 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 - Failed
      -- 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)
      -- Checking for module 'libsystemd'
      --   Package 'libsystemd', required by 'virtual:world', not found
      -- Performing Test HAVE_STDATOMIC
      -- Performing Test HAVE_STDATOMIC - Success
      -- Found WrapAtomic: TRUE
      -- Checking for module 'libb2'
      --   Package 'libb2', required by 'virtual:world', not found
      -- 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
      -- Checking for module 'libproxy-1.0'
      --   Package 'libproxy-1.0', required by 'virtual:world', not found
      -- Conan: Using autogenerated FindOpenSSL.cmake
      -- Found OpenSSL: 1.1.1m (found version "1.1.1m")
      -- Library libssld found C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libssld.lib
      -- Found: C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libssld.lib
      -- Library libcryptod found C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libcryptod.lib
      -- Found: C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libcryptod.lib
      -- Library libcryptod found C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libcryptod.lib
      -- Found: C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libcryptod.lib
      -- Library libssld found C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libssld.lib
      -- Found: C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/lib/libssld.lib
      -- Found WrapOpenSSLHeaders: C:/Users/G91WOQS/.conan/data/openssl/1.1.1m/_/_/package/d057732059ea44a47760900cb5e4855d2bea8714/include (found version "1.1.1m")
      -- Performing Test HAVE_openssl_headers
      -- Performing Test HAVE_openssl_headers - Success
      -- Found WrapOpenSSL: libcryptod (found version "1.1.1m")
      -- 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
      -- Checking for module 'atspi-2'
      --   Package 'atspi-2', required by 'virtual:world', not found
      -- Checking for module 'directfb'
      --   Package 'directfb', required by 'virtual:world', not found
      -- 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) (found suitable version "2.10.0", minimum required is "2.2.0")
      -- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY) (found version "2.13.1")
      -- Findgbm.cmake cannot find gbm on Windows systems.
      -- Checking for module 'harfbuzz'
      --   Package 'harfbuzz', required by 'virtual:world', not found
      -- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES) (Required is at least version "2.6.0")
      -- FindLibinput.cmake cannot find libinput on Windows systems.
      -- Could NOT find JPEG (missing: JPEG_LIBRARY) (found version "90")
      -- Could NOT find md4c (missing: md4c_DIR)
      -- Could NOT find WrapSystemPNG (missing: __png_found) (found version "1.6.37")
      -- Checking for module 'mtdev'
      --   Package 'mtdev', required by 'virtual:world', not 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)
      -- Checking for module 'tslib'
      --   Package 'tslib', required by 'virtual:world', not found
      -- 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
      -- Could NOT find WrapSystemPCRE2 (missing: PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS __pcre2_found)
      -- Using source syncqt found at: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/source/qt6/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)
      -- Checking for module 'libsystemd'
      --   Package 'libsystemd', required by 'virtual:world', not found
      -- Checking for module 'libb2'
      --   Package 'libb2', required by 'virtual:world', not found
      -- 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)
      -- xmlstarlet command was not found. freedesktop.org.xml will not be minified.
      -- Running syncqt for module: 'QtConcurrent'
      -- Running syncqt for module: 'QtSql'
      QtSql: created deprecated header(s) { qsql.h }
      -- Running syncqt for module: 'QtNetwork'
      -- Checking for module 'libproxy-1.0'
      --   Package 'libproxy-1.0', required by 'virtual:world', not 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::qlalr' will be built from source.
      -- Tool 'Qt6::qvkgen' will be built from source.
      -- Tool 'Qt6::qtpaths' will be built from source.
      -- Could NOT find X11_XCB (missing: X11_XCB_LIBRARY X11_XCB_INCLUDE_DIR)
      -- Checking for module 'harfbuzz'
      --   Package 'harfbuzz', required by 'virtual:world', not found
      -- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES)
      -- Could NOT find WrapSystemPNG (missing: __png_found) (found version "1.6.37")
      -- Could NOT find WrapSystemFreetype (missing: __freetype_found) (found version "2.10.0")
      -- Running syncqt for module: 'QtGui'
      -- Checking for module 'atspi-2'
      --   Package 'atspi-2', required by 'virtual:world', not found
      -- Checking for module 'directfb'
      --   Package 'directfb', required by 'virtual:world', not found
      -- 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) (found suitable version "2.10.0", minimum required is "2.2.0")
      -- Could NOT find Fontconfig (missing: Fontconfig_LIBRARY) (found version "2.13.1")
      -- Findgbm.cmake cannot find gbm on Windows systems.
      -- Checking for module 'harfbuzz'
      --   Package 'harfbuzz', required by 'virtual:world', not found
      -- Could NOT find WrapSystemHarfbuzz (missing: HARFBUZZ_LIBRARIES) (Required is at least version "2.6.0")
      -- FindLibinput.cmake cannot find libinput on Windows systems.
      -- Could NOT find JPEG (missing: JPEG_LIBRARY) (found version "90")
      -- Could NOT find md4c (missing: md4c_DIR)
      -- Could NOT find WrapSystemPNG (missing: __png_found) (found version "1.6.37")
      -- Checking for module 'mtdev'
      --   Package 'mtdev', required by 'virtual:world', not 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)
      -- Checking for module 'tslib'
      --   Package 'tslib', required by 'virtual:world', not found
      -- Could NOT find WrapVulkanHeaders (missing: Vulkan_INCLUDE_DIR)
      -- Running syncqt for module: 'QtOpenGL'
      -- Running syncqt for module: 'QtWidgets'
      -- Checking for module 'gtk+-3.0 >= 3.6'
      --   Package 'gtk+-3.0', required by 'virtual:world', not found
      -- Running syncqt for module: 'QtOpenGLWidgets'
      -- Running syncqt for module: 'QtDeviceDiscoverySupport'
      -- Running syncqt for module: 'QtFbSupport'
      -- Running syncqt for module: 'QtTest'
      QtTest: created deprecated header(s) { qtest_global.h }
      -- 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) (found version "11.3")
      -- 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 WrapSystemFreetype (missing: __freetype_found) (found version "2.10.0")
      Generating Plugins files for EntryPointPrivate;Core;Concurrent;Sql;Network;Xml;Gui;OpenGL;Widgets;OpenGLWidgets;DeviceDiscoverySupportPrivate;FbSupportPrivate;Test;PrintSupport...
      Configuring 'qtshadertools'
      -- Running syncqt for module: 'QtShaderTools'
      -- Tool 'Qt6::qsb' will be built from source.
      Generating Plugins files for BundledGlslang_Spirv;BundledGlslang_Osdependent;BundledGlslang_Oglcompiler;BundledGlslang_Glslang;BundledSpirv_Cross;ShaderTools...
      Configuring 'qtsvg'
      Configuring 'qtimageformats'
      -- Could NOT find JPEG (missing: JPEG_LIBRARY) (found version "90")
      -- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR JPEG_LIBRARIES)
      -- Could NOT find TIFF (missing: TIFF_LIBRARY) (found version "4.0.10")
      -- Checking for module 'libwebp'
      --   Package 'libwebp', required by 'virtual:world', not found
      -- Checking for module 'libwebpdemux'
      --   Package 'libwebpdemux', required by 'virtual:world', not found
      -- Checking for module 'libwebpmux'
      --   Package 'libwebpmux', required by 'virtual:world', not found
      -- Could NOT find WrapWebP (missing: WebP_INCLUDE_DIR WebP_LIBRARY WebP_demux_INCLUDE_DIR WebP_demux_LIBRARY WebP_mux_INCLUDE_DIR WebP_mux_LIBRARY)
      -- Checking for module 'libmng'
      --   Package 'libmng', required by 'virtual:world', not found
      -- Could NOT find Libmng (missing: LIBMNG_LIBRARY LIBMNG_INCLUDE_DIR)
      Generating Plugins files for ...
      Configuring 'qtdeclarative'
      Configuring 'qt3d'
      Configuring 'qt5compat'
      Configuring 'qtactiveqt'
      Configuring 'qtmultimedia'
      -- 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: 'QtMultimediaWidgets'
      Generating Plugins files for Multimedia;MultimediaWidgets...
      Configuring 'qtcharts'
      Configuring 'qtcoap'
      Configuring 'qtconnectivity'
      Configuring 'qtdatavis3d'
      Configuring 'qttools'
      Configuring 'qtdoc'
      Configuring 'qtlottie'
      Configuring 'qtmqtt'
      Configuring 'qtnetworkauth'
      Configuring 'qtopcua'
      Configuring 'qtserialport'
      -- Checking for module 'libudev'
      --   Package 'libudev', required by 'virtual:world', not found
      -- Running syncqt for module: 'QtSerialPort'
      -- Performing Test HAVE_ntddmodm
      -- Performing Test HAVE_ntddmodm - Failed
      Generating Plugins files for SerialPort...
      Configuring 'qtpositioning'
      -- Running syncqt for module: 'QtPositioning'
      -- Checking for module 'gypsy'
      --   Package 'gypsy', required by 'virtual:world', not found
      -- Checking for module 'gconf-2.0'
      --   Package 'gconf-2.0', required by 'virtual:world', not found
      -- Performing Test WinRT geolocation
      -- Performing Test WinRT geolocation - Success
      Generating Plugins files for Bundled_Clip2Tri;Bundled_Poly2Tri;Bundled_Clipper;Positioning...
      Configuring 'qtquicktimeline'
      Configuring 'qtquick3d'
      Configuring 'qtremoteobjects'
      Configuring 'qtscxml'
      Configuring 'qtsensors'
      Configuring 'qtserialbus'
      Configuring 'qttranslations'
      Configuring 'qtvirtualkeyboard'
      Configuring 'qtwayland'
      Configuring 'qtwebsockets'
      Configuring 'qtwebchannel'
      Configuring 'qtwebengine'
      Configuring 'qtwebview'
      -- The following packages have been found: * QtBuildInternals
       * OpenSSL
       * OpenGL
       * WrapOpenSSLHeaders
       * WrapOpenSSL
       * ZLIB
       * WrapOpenGL
       * ODBC
       * Qt6ShaderToolsTools (required version >= 6.2.3)
       * Qt6ShaderTools
       * WMF
       * Qt6BuildInternals (required version >= 6.2.3)
       * WrapAtomic
       * Qt6CoreTools (required version >= 6.2.3)
       * Qt6Core (required version >= 6.2.3)
       * Qt6GuiTools (required version >= 6.2.3)
       * Qt6Gui (required version >= 6.2.3)
       * Qt6WidgetsTools (required version >= 6.2.3)
       * Qt6Widgets (required version >= 6.2.3)
       * WrapZLIB (required version >= 1.0.8)
       * Qt6Network (required version >= 6.2.3)
       * Qt6Test (required version >= 6.2.3)
       * Threads
       * Qt6SerialPort (required version >= 6.2.3)
       * Qt6 (required version >= 6.2.3)
       * PkgConfig-- The following REQUIRED packages have not been found: * WrapPCRE2
       * WrapFreetype-- 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)
       * double-conversion
       * WrapDoubleConversion
       * ICU
       * Libsystemd
       * Libb2
       * WrapRt
       * LTTngUST
       * 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/>
       * WrapHarfbuzz
       * WrapPNG
       * ATSPI2
       * DirectFB
       * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
       * 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
       * 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>
       * Freetype
       * WrapSystemFreetype
       * JPEG
       * Jasper
       * WrapJasper
       * TIFF
       * WebP
       * WrapWebP
       * Libmng
       * Qt6Svg (required version >= 6.2.3)
       * Qt6QuickControls2 (required version >= 6.2.3)
       * 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/>
       * Libudev
       * Qt6Quick (required version >= 6.2.3)
       * Qt6Qml (required version >= 6.2.3)
       * Qt6DBus (required version >= 6.2.3)
       * Qt6QuickTest (required version >= 6.2.3)
       * Gypsy
       * GconfCMake Error at C:/Users/G91WOQS/.conan/data/cmake/3.22.0/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/share/cmake-3.22/Modules/FeatureSummary.cmake:464 (message):
        feature_summary() Error: REQUIRED package(s) are missing, aborting CMake
        run.
      Call Stack (most recent call first):
        qtbase/cmake/QtBuildInformation.cmake:4 (feature_summary)
        CMakeLists.txt:114 (qt_print_feature_summary)
      -- Configuring incomplete, errors occurred!
      See also "C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeOutput.log".
      See also "C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeError.log".
      qt/6.2.3@test/test: Checking whether the ASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "--version" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Checking whether the ASM compiler is Clang using "--version" did not match "(clang version)":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "--version" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Checking whether the ASM compiler is AppleClang using "--version" did not match "(Apple LLVM version)":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "--version" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Checking whether the ASM compiler is ARMClang using "--version" did not match "armclang":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "--version" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Checking whether the ASM compiler is HP using "-V" did not match "HP C":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile error D8004 : "/V" erfordert ein Argument.
      Checking whether the ASM compiler is Intel using "--version" did not match "(ICC)":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "--version" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Checking whether the ASM compiler is IntelLLVM using "--version" did not match "(Intel[^
      ]+oneAPI)":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "--version" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Checking whether the ASM compiler is SunPro using "-V" did not match "Sun C":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile error D8004 : "/V" erfordert ein Argument.
      Checking whether the ASM compiler is XL using "-qversion" did not match "XL C":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.cl : Befehlszeile warning D9002 : Unbekannte Option "-qversion" wird ignoriert.
      cl : Befehlszeile error D8003 : Name der Quelldatei fehlt.
      Performing C++ SOURCE FILE Test HAVE_LD_VERSION_SCRIPT failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_c6be6 && [1/2] Building CXX object CMakeFiles\cmTC_c6be6.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_c6be6.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_LD_VERSION_SCRIPT  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Wl,--version-script="C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/qtbase/version_flag.map" /Zi /Ob0 /Od /RTC1  -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_c6be6.dir\src.cxx.obj /FdCMakeFiles\cmTC_c6be6.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      cl : Befehlszeile error D8021 : Ungültiges numerisches Argument /Wl,--version-script=C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/qtbase/version_flag.map.
      ninja: build stopped: subcommand failed.
      Source file was:
      int main(void){return 0;}
      Performing C++ SOURCE FILE Test TEST_use_bfd_linker failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_7fc43 && [1/2] Building CXX object CMakeFiles\cmTC_7fc43.dir\src.cxx.obj
      cl : Befehlszeile warning D9002 : Unbekannte Option "-fuse-ld=bfd" wird ignoriert.
      [2/2] Linking CXX executable cmTC_7fc43.exe
      Source file was:
      int main() { return 0; }
      Performing C++ SOURCE FILE Test TEST_use_gold_linker failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_46e8b && [1/2] Building CXX object CMakeFiles\cmTC_46e8b.dir\src.cxx.obj
      cl : Befehlszeile warning D9002 : Unbekannte Option "-fuse-ld=gold" wird ignoriert.
      [2/2] Linking CXX executable cmTC_46e8b.exe
      Source file was:
      int main() { return 0; }
      Performing C++ SOURCE FILE Test TEST_use_lld_linker failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_45653 && [1/2] Building CXX object CMakeFiles\cmTC_45653.dir\src.cxx.obj
      cl : Befehlszeile warning D9002 : Unbekannte Option "-fuse-ld=lld" wird ignoriert.
      [2/2] Linking CXX executable cmTC_45653.exe
      Source file was:
      int main() { return 0; }
      Performing C++ SOURCE FILE Test TEST_optimize_debug failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_7655f && [1/2] Building CXX object CMakeFiles\cmTC_7655f.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_7655f.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DTEST_optimize_debug  /DWIN32 /D_WINDOWS /EHsc  /MP16  /Zi /Ob0 /Od /RTC1  -MDd   -Og -std:c++17 /showIncludes /FoCMakeFiles\cmTC_7655f.dir\src.cxx.obj /FdCMakeFiles\cmTC_7655f.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      cl : Befehlszeile warning D9035 : Die Option "Og" ist veraltet und wird in einer der nächsten Versionen entfernt.
      cl : Befehlszeile error D8016 : Die Befehlszeilenoptionen /RTC1 und /Og sind inkompatibel.
      ninja: build stopped: subcommand failed.
      Source file was:
      int main() { return 0; }
      Performing C++ SOURCE FILE Test HAVE_reduce_relocations failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_7885f && [1/2] Building CXX object CMakeFiles\cmTC_7885f.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_7885f.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_reduce_relocations  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi /Ob0 /Od /RTC1  -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_7885f.dir\src.cxx.obj /FdCMakeFiles\cmTC_7885f.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1189: #error:  Symbolic function binding on this architecture may be broken, disabling it (see QTBUG-36129).
      ninja: build stopped: subcommand failed.
      Source file was:
       #if !(defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64)) || defined(__sun)
      #  error Symbolic function binding on this architecture may be broken, disabling it (see QTBUG-36129).
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_posix_fallocate failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_07b37 && [1/2] Building CXX object CMakeFiles\cmTC_07b37.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_07b37.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_posix_fallocate  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi /Ob0 /Od /RTC1  -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_07b37.dir\src.cxx.obj /FdCMakeFiles\cmTC_07b37.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "unistd.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <fcntl.h>
      #include <unistd.h>int main(void)
      {
          /* BEGIN TEST: */
      (void) posix_fallocate(0, 0, 0);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_alloca_stdlib_h failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_00bcf && [1/2] Building CXX object CMakeFiles\cmTC_00bcf.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_00bcf.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_alloca_stdlib_h  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi /Ob0 /Od /RTC1  -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_00bcf.dir\src.cxx.obj /FdCMakeFiles\cmTC_00bcf.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(6): error C3861: "alloca": Bezeichner wurde nicht gefunden.
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <stdlib.h>int main(void)
      {
          /* BEGIN TEST: */
      alloca(1);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_alloca_h failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_813ce && [1/2] Building CXX object CMakeFiles\cmTC_813ce.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_813ce.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_alloca_h  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi /Ob0 /Od /RTC1  -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_813ce.dir\src.cxx.obj /FdCMakeFiles\cmTC_813ce.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "alloca.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <alloca.h>
      #ifdef __QNXNTO__
      // extra include needed in QNX7 to define NULL for the alloca() macro
      #  include <stddef.h>
      #endifint main(void)
      {
          /* BEGIN TEST: */
      alloca(1);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_intelcet failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_15270 && [1/2] Building CXX object CMakeFiles\cmTC_15270.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_15270.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_intelcet  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi /Ob0 /Od /RTC1  -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_15270.dir\src.cxx.obj /FdCMakeFiles\cmTC_15270.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(5): fatal error C1189: #error:  Intel CET not available
      ninja: build stopped: subcommand failed.
      Source file was:
       int main(void)
      {
          /* BEGIN TEST: */
      #if !defined(__CET__)
      #  error Intel CET not available
      #endif
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_GETTIME failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_26a97 && [1/2] Building CXX object CMakeFiles\cmTC_26a97.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_26a97.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_GETTIME  /DWIN32 /D_WINDOWS /EHsc  /MP16  /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_26a97.dir\src.cxx.obj /FdCMakeFiles\cmTC_26a97.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "unistd.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:#include <unistd.h>
      #include <time.h>int main(int argc, char *argv[]) {
          timespec ts; clock_gettime(CLOCK_REALTIME, &ts);
      }
      Performing C++ SOURCE FILE Test HAVE_cloexec failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_d82c5 && [1/2] Building CXX object CMakeFiles\cmTC_d82c5.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_d82c5.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_cloexec  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_d82c5.dir\src.cxx.obj /FdCMakeFiles\cmTC_d82c5.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(3): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/socket.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #define _GNU_SOURCE 1
      #include <sys/types.h>
      #include <sys/socket.h>
      #include <fcntl.h>
      #include <unistd.h>int main(void)
      {
          /* BEGIN TEST: */
      int pipes[2];
      (void) pipe2(pipes, O_CLOEXEC | O_NONBLOCK);
      (void) fcntl(0, F_DUPFD_CLOEXEC, 0);
      (void) dup3(0, 3, O_CLOEXEC);
      #if defined(__NetBSD__)
      (void) paccept(0, 0, 0, NULL, SOCK_CLOEXEC | SOCK_NONBLOCK);
      #else
      (void) accept4(0, 0, 0, SOCK_CLOEXEC | SOCK_NONBLOCK);
      #endif
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_eventfd failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_690ee && [1/2] Building CXX object CMakeFiles\cmTC_690ee.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_690ee.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_eventfd  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_690ee.dir\src.cxx.obj /FdCMakeFiles\cmTC_690ee.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/eventfd.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/eventfd.h>int main(void)
      {
          /* BEGIN TEST: */
      eventfd_t value;
      int fd = eventfd(0, EFD_CLOEXEC);
      eventfd_read(fd, &value);
      eventfd_write(fd, value);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_futimens failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_a82f4 && [1/2] Building CXX object CMakeFiles\cmTC_a82f4.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_a82f4.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_futimens  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_a82f4.dir\src.cxx.obj /FdCMakeFiles\cmTC_a82f4.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(6): error C3861: "futimens": Bezeichner wurde nicht gefunden.
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/stat.h>int main(void)
      {
          /* BEGIN TEST: */
      futimens(-1, 0);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_futimes failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_fd78b && [1/2] Building CXX object CMakeFiles\cmTC_fd78b.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_fd78b.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_futimes  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_fd78b.dir\src.cxx.obj /FdCMakeFiles\cmTC_fd78b.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/time.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/time.h>int main(void)
      {
          /* BEGIN TEST: */
      futimes(-1, 0);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_getauxval failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_959e9 && [1/2] Building CXX object CMakeFiles\cmTC_959e9.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_959e9.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_getauxval  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_959e9.dir\src.cxx.obj /FdCMakeFiles\cmTC_959e9.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/auxv.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/auxv.h>int main(void)
      {
          /* BEGIN TEST: */
      (void) getauxval(AT_NULL);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_getentropy failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_7af26 && [1/2] Building CXX object CMakeFiles\cmTC_7af26.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_7af26.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_getentropy  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_7af26.dir\src.cxx.obj /FdCMakeFiles\cmTC_7af26.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "unistd.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <unistd.h>int main(void)
      {
          /* BEGIN TEST: */
      char buf[32];
      (void) getentropy(buf, sizeof(buf));
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_glibc failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_cae51 && [1/2] Building CXX object CMakeFiles\cmTC_cae51.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_cae51.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_glibc  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_cae51.dir\src.cxx.obj /FdCMakeFiles\cmTC_cae51.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(6): error C2065: "__GLIBC__": nichtdeklarierter Bezeichner
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <stdlib.h>int main(void)
      {
          /* BEGIN TEST: */
      return __GLIBC__;
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_inotify failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_da6c5 && [1/2] Building CXX object CMakeFiles\cmTC_da6c5.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_da6c5.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_inotify  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_da6c5.dir\src.cxx.obj /FdCMakeFiles\cmTC_da6c5.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/inotify.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/inotify.h>int main(void)
      {
          /* BEGIN TEST: */
      inotify_init();
      inotify_add_watch(0, "foobar", IN_ACCESS);
      inotify_rm_watch(0, 1);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_ipc_sysv failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_0b07c && [1/2] Building CXX object CMakeFiles\cmTC_0b07c.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_0b07c.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_ipc_sysv  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_0b07c.dir\src.cxx.obj /FdCMakeFiles\cmTC_0b07c.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/ipc.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/types.h>
      #include <sys/ipc.h>
      #include <sys/sem.h>
      #include <sys/shm.h>
      #include <fcntl.h>int main(void)
      {
          /* BEGIN TEST: */
      key_t unix_key = ftok("test", 'Q');
      semctl(semget(unix_key, 1, 0666 | IPC_CREAT | IPC_EXCL), 0, IPC_RMID, 0);
      shmget(unix_key, 0, 0666 | IPC_CREAT | IPC_EXCL);
      shmctl(0, 0, (struct shmid_ds *)(0));
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_ipc_posix failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_51836 && [1/2] Building CXX object CMakeFiles\cmTC_51836.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_51836.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_ipc_posix  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_51836.dir\src.cxx.obj /FdCMakeFiles\cmTC_51836.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/mman.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/types.h>
      #include <sys/mman.h>
      #include <semaphore.h>
      #include <fcntl.h>int main(void)
      {
          /* BEGIN TEST: */
      sem_close(sem_open("test", O_CREAT | O_EXCL, 0666, 0));
      shm_open("test", O_RDWR | O_CREAT | O_EXCL, 0666);
      shm_unlink("test");
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_linkat failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_402b5 && [1/2] Building CXX object CMakeFiles\cmTC_402b5.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_402b5.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_linkat  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_402b5.dir\src.cxx.obj /FdCMakeFiles\cmTC_402b5.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(3): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "unistd.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #define _ATFILE_SOURCE 1
      #include <fcntl.h>
      #include <unistd.h>int main(void)
      {
          /* BEGIN TEST: */
      linkat(AT_FDCWD, "foo", AT_FDCWD, "bar", AT_SYMLINK_FOLLOW);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_ppoll failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_ae90f && [1/2] Building CXX object CMakeFiles\cmTC_ae90f.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_ae90f.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_ppoll  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_ae90f.dir\src.cxx.obj /FdCMakeFiles\cmTC_ae90f.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "poll.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <signal.h>
      #include <poll.h>int main(void)
      {
          /* BEGIN TEST: */
      struct pollfd pfd;
      struct timespec ts;
      sigset_t sig;
      ppoll(&pfd, 1, &ts, &sig);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_pollts failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_d36c6 && [1/2] Building CXX object CMakeFiles\cmTC_d36c6.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_d36c6.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_pollts  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_d36c6.dir\src.cxx.obj /FdCMakeFiles\cmTC_d36c6.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "poll.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <poll.h>
      #include <signal.h>
      #include <time.h>int main(void)
      {
          /* BEGIN TEST: */
      struct pollfd pfd;
      struct timespec ts;
      sigset_t sig;
      pollts(&pfd, 1, &ts, &sig);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_poll failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_3d421 && [1/2] Building CXX object CMakeFiles\cmTC_3d421.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_3d421.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_poll  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_3d421.dir\src.cxx.obj /FdCMakeFiles\cmTC_3d421.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "poll.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <poll.h>int main(void)
      {
          /* BEGIN TEST: */
      struct pollfd pfd;
      poll(&pfd, 1, 0);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_renameat2 failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_d2eda && [1/2] Building CXX object CMakeFiles\cmTC_d2eda.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_d2eda.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_renameat2  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_d2eda.dir\src.cxx.obj /FdCMakeFiles\cmTC_d2eda.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C2065: "AT_FDCWD": nichtdeklarierter Bezeichner
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C2065: "argv": nichtdeklarierter Bezeichner
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C2065: "AT_FDCWD": nichtdeklarierter Bezeichner
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C2065: "argv": nichtdeklarierter Bezeichner
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C2065: "RENAME_NOREPLACE": nichtdeklarierter Bezeichner
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C2065: "RENAME_WHITEOUT": nichtdeklarierter Bezeichner
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(8): error C3861: "renameat2": Bezeichner wurde nicht gefunden.
      ninja: build stopped: subcommand failed.
      Source file was:
       #define _ATFILE_SOURCE 1
      #include <fcntl.h>
      #include <stdio.h>int main(void)
      {
          /* BEGIN TEST: */
      renameat2(AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_NOREPLACE | RENAME_WHITEOUT);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_statx failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_38c48 && [1/2] Building CXX object CMakeFiles\cmTC_38c48.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_38c48.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_statx  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_38c48.dir\src.cxx.obj /FdCMakeFiles\cmTC_38c48.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(4): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "unistd.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #define _ATFILE_SOURCE 1
      #include <sys/types.h>
      #include <sys/stat.h>
      #include <unistd.h>
      #include <fcntl.h>int main(void)
      {
          /* BEGIN TEST: */
      struct statx statxbuf;
      unsigned int mask = STATX_BASIC_STATS;
      return statx(AT_FDCWD, "", AT_STATX_SYNC_AS_STAT, mask, &statxbuf);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_syslog failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_ca774 && [1/2] Building CXX object CMakeFiles\cmTC_ca774.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_ca774.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_syslog  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_ca774.dir\src.cxx.obj /FdCMakeFiles\cmTC_ca774.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "syslog.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <syslog.h>int main(void)
      {
          /* BEGIN TEST: */
      openlog("qt", 0, LOG_USER);
      syslog(LOG_INFO, "configure");
      closelog();
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_xlocalescanprint failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_d304b && [1/2] Building CXX object CMakeFiles\cmTC_d304b.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_d304b.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_xlocalescanprint  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_d304b.dir\src.cxx.obj /FdCMakeFiles\cmTC_d304b.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(10): error C2006: "#include": FILENAME oder <FILENAME> erwartet.
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(10): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #define QT_BEGIN_NAMESPACE
      #define QT_END_NAMESPACE#ifdef _MSVC_VER
      #define Q_CC_MSVC _MSVC_VER
      #endif#define QT_NO_DOUBLECONVERSION#include QDSP_P_Hint main(void)
      {
          /* BEGIN TEST: */
      #ifdef _MSVC_VER
      _locale_t invalidLocale = NULL;
      #else
      locale_t invalidLocale = NULL;
      #endif
      double a = 3.4;
      qDoubleSnprintf(argv[0], 1, invalidLocale, "invalid format", a);
      qDoubleSscanf(argv[0], invalidLocale, "invalid format", &a, &argc);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_getifaddrs failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_3582b && [1/2] Building CXX object CMakeFiles\cmTC_3582b.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_3582b.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_getifaddrs  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_3582b.dir\src.cxx.obj /FdCMakeFiles\cmTC_3582b.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/socket.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/types.h>
      #include <sys/socket.h>
      #include <net/if.h>
      #include <ifaddrs.h>int main(void)
      {
          /* BEGIN TEST: */
      ifaddrs *list;
      getifaddrs(&list);
      freeifaddrs(list);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_ifr_index failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_3d311 && [1/2] Building CXX object CMakeFiles\cmTC_3d311.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_3d311.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_ifr_index  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_3d311.dir\src.cxx.obj /FdCMakeFiles\cmTC_3d311.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "net/if.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <net/if.h>int main(void)
      {
          /* BEGIN TEST: */
      struct ifreq req;
      req.ifr_index = 0;
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_ipv6ifname failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_55e0f && [1/2] Building CXX object CMakeFiles\cmTC_55e0f.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_55e0f.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_ipv6ifname  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_55e0f.dir\src.cxx.obj /FdCMakeFiles\cmTC_55e0f.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/socket.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/types.h>
      #include <sys/socket.h>
      #include <net/if.h>int main(void)
      {
          /* BEGIN TEST: */
      char buf[IFNAMSIZ];
      if_nametoindex("eth0");
      if_indextoname(1, buf);
      if_freenameindex(if_nameindex());
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_linux_netlink failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_5f9a7 && [1/2] Building CXX object CMakeFiles\cmTC_5f9a7.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_5f9a7.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_linux_netlink  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_5f9a7.dir\src.cxx.obj /FdCMakeFiles\cmTC_5f9a7.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "asm/types.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <asm/types.h>
      #include <linux/netlink.h>
      #include <linux/rtnetlink.h>
      #include <sys/socket.h>int main(void)
      {
          /* BEGIN TEST: */
      struct rtattr rta = { };
      struct ifinfomsg ifi = {};
      struct ifaddrmsg ifa = {};
      struct ifa_cacheinfo ci;
      ci.ifa_prefered = ci.ifa_valid = 0;
      (void)RTM_NEWLINK; (void)RTM_NEWADDR;
      (void)IFLA_ADDRESS; (void)IFLA_IFNAME;
      (void)IFA_ADDRESS; (void)IFA_LABEL; (void)IFA_CACHEINFO;
      (void)(IFA_F_SECONDARY | IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_MANAGETEMPADDR);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_sctp failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_0892c && [1/2] Building CXX object CMakeFiles\cmTC_0892c.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_0892c.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_sctp  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_0892c.dir\src.cxx.obj /FdCMakeFiles\cmTC_0892c.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "sys/socket.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <sys/types.h>
      #include <sys/socket.h>
      #include <netinet/in.h>
      #include <netinet/sctp.h>int main(void)
      {
          /* BEGIN TEST: */
      sctp_initmsg sctpInitMsg;
      socklen_t sctpInitMsgSize = sizeof(sctpInitMsg);
      (void) socket(PF_INET, SOCK_STREAM, IPPROTO_SCTP);
      (void) getsockopt(-1, SOL_SCTP, SCTP_INITMSG, &sctpInitMsg, &sctpInitMsgSize);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_EGL failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_98669 && [1/2] Building CXX object CMakeFiles\cmTC_98669.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_98669.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_EGL  /DWIN32 /D_WINDOWS /EHsc  /MP16  /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_98669.dir\src.cxx.obj /FdCMakeFiles\cmTC_98669.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(2): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "EGL/egl.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:#include <EGL/egl.h>int main(int argc, char *argv[]) {
          EGLint x = 0; EGLDisplay dpy = 0; EGLContext ctx = 0;
          eglDestroyContext(dpy, ctx);
      }
      Performing C++ SOURCE FILE Test HAVE_GLESv2 failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_5a852 && [1/2] Building CXX object CMakeFiles\cmTC_5a852.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_5a852.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_GLESv2  /DWIN32 /D_WINDOWS /EHsc  /MP16  /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_5a852.dir\src.cxx.obj /FdCMakeFiles\cmTC_5a852.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(6): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "GLES2/gl2.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:#ifdef __APPLE__
      #  include <OpenGLES/ES2/gl.h>
      #else
      #  define GL_GLEXT_PROTOTYPES
      #  include <GLES2/gl2.h>
      #endifint main(int argc, char *argv[]) {
          glUniform1f(1, GLfloat(1.0));
          glClear(GL_COLOR_BUFFER_BIT);
      }
      Performing C++ SOURCE FILE Test HAVE_evdev failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_9385e && [1/2] Building CXX object CMakeFiles\cmTC_9385e.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_9385e.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_evdev  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_9385e.dir\src.cxx.obj /FdCMakeFiles\cmTC_9385e.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(4): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "linux/input.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #if defined(__FreeBSD__)
      #  include <dev/evdev/input.h>
      #else
      #  include <linux/input.h>
      #  include <linux/kd.h>
      #endif
      enum {
          e1 = ABS_PRESSURE,
          e2 = ABS_X,
          e3 = REL_X,
          e4 = SYN_REPORT,
      };int main(void)
      {
          /* BEGIN TEST: */
      input_event buf[32];
      (void) buf;
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_integrityfb failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_206b6 && [1/2] Building CXX object CMakeFiles\cmTC_206b6.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_206b6.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_integrityfb  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_206b6.dir\src.cxx.obj /FdCMakeFiles\cmTC_206b6.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "device/fbdriver.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <device/fbdriver.h>int main(void)
      {
          /* BEGIN TEST: */
      FBDriver *driver = 0;
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_linuxfb failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_38311 && [1/2] Building CXX object CMakeFiles\cmTC_38311.dir\src.cxx.obj
      FAILED: CMakeFiles/cmTC_38311.dir/src.cxx.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DHAVE_linuxfb  /DWIN32 /D_WINDOWS /EHsc  /MP16 -Zc:__cplusplus /Zi     /RTC1 -MDd -std:c++17 /showIncludes /FoCMakeFiles\cmTC_38311.dir\src.cxx.obj /FdCMakeFiles\cmTC_38311.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "linux/fb.h": No such file or directory
      ninja: build stopped: subcommand failed.
      Source file was:
       #include <linux/fb.h>
      #include <sys/kd.h>
      #include <sys/ioctl.h>int main(void)
      {
          /* BEGIN TEST: */
      fb_fix_screeninfo finfo;
      fb_var_screeninfo vinfo;
      int fd = 3;
      ioctl(fd, FBIOGET_FSCREENINFO, &finfo);
      ioctl(fd, FBIOGET_VSCREENINFO, &vinfo);
          /* END TEST: */
          return 0;
      }Determining if the include file pthread.h exists failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_9e1cc && [1/2] Building C object CMakeFiles\cmTC_9e1cc.dir\CheckIncludeFile.c.obj
      FAILED: CMakeFiles/cmTC_9e1cc.dir/CheckIncludeFile.c.obj
      C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo   /DWIN32 /D_WINDOWS  /MP16  /Zi     /RTC1 -MDd -std:c11 /showIncludes /FoCMakeFiles\cmTC_9e1cc.dir\CheckIncludeFile.c.obj /FdCMakeFiles\cmTC_9e1cc.dir\ /FS -c C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\CheckIncludeFile.c
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1): fatal error C1083: Datei (Include) kann nicht geöffnet werden: "pthread.h": No such file or directory
      ninja: build stopped: subcommand failed.Performing C++ SOURCE FILE Test HAVE_ntddmodm failed with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_91bfb && [1/2] Building CXX object CMakeFiles\cmTC_91bfb.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_91bfb.exe
      FAILED: cmTC_91bfb.exe
      cmd.exe /C "cd . && C:\Users\G91WOQS\.conan\data\cmake\3.22.0\_\_\package\01edd76db8e16db9b38c3cca44ec466a9444c388\bin\cmake.exe -E vs_link_exe --intdir=CMakeFiles\cmTC_91bfb.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests  -- C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\link.exe /nologo CMakeFiles\cmTC_91bfb.dir\src.cxx.obj  /out:cmTC_91bfb.exe /implib:cmTC_91bfb.lib /pdb:cmTC_91bfb.pdb /version:0.0 /machine:x64    /debug /INCREMENTAL /subsystem:console  kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ."
      LINK Pass 1: command "C:\PROGRA~2\MIB055~1\2019\PROFES~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\link.exe /nologo CMakeFiles\cmTC_91bfb.dir\src.cxx.obj /out:cmTC_91bfb.exe /implib:cmTC_91bfb.lib /pdb:cmTC_91bfb.pdb /version:0.0 /machine:x64 /debug /INCREMENTAL /subsystem:console kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTFILE:CMakeFiles\cmTC_91bfb.dir/intermediate.manifest CMakeFiles\cmTC_91bfb.dir/manifest.res" failed (exit code 1120) with the following output:
      src.cxx.obj : error LNK2001: Nicht aufgelöstes externes Symbol "GUID_DEVINTERFACE_MODEM".
      cmTC_91bfb.exe : fatal error LNK1120: 1 nicht aufgelöste Externe
      ninja: build stopped: subcommand failed.
      Source file was:#include <windows.h>
      #include <ntddmodm.h>int main(int argc, char **argv)
      {
          (void)argc; (void)argv;
          /* BEGIN TEST: */
      GUID guid = GUID_DEVINTERFACE_MODEM;
          /* END TEST: */
          return 0;
      }
      qt/6.2.3@test/test: The system is: Windows - 10.0.19042 - AMD64
      Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
      Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe
      Build flags:
      Id flags:The output was:
      0
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.CMakeCXXCompilerId.cpp
      Microsoft (R) Incremental Linker Version 14.29.30136.0
      Copyright (C) Microsoft Corporation.  All rights reserved./out:CMakeCXXCompilerId.exe
      CMakeCXXCompilerId.obj
      Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.exe"Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.obj"The CXX compiler identification is MSVC, found in "C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/3.22.0/CompilerIdCXX/CMakeCXXCompilerId.exe"Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
      Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe
      Build flags:
      Id flags:The output was:
      0
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.CMakeCCompilerId.c
      Microsoft (R) Incremental Linker Version 14.29.30136.0
      Copyright (C) Microsoft Corporation.  All rights reserved./out:CMakeCCompilerId.exe
      CMakeCCompilerId.obj
      Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.exe"Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.obj"The C compiler identification is MSVC, found in "C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/3.22.0/CompilerIdC/CMakeCCompilerId.exe"Checking whether the ASM compiler is MSVC using "-?" matched "Microsoft":
      Microsoft (R) C/C++-Optimierungscompiler Version 19.29.30136 für x64
      Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.                         C/C++-COMPILEROPTIONEN
                                    -OPTIMIERUNG-/O1 maximale Optimierungen (Platz bevorzugen)
      /O2 maximale Optimierungen (Geschwindigkeit bevorzugen)
      /Ob<n> Inlineerweiterung (Standard: n=0)
      /Od Optimierungen deaktivieren (Standard)
      /Og Globale Optimierung aktivieren
      /Oi[-] Systeminterne Funktionen aktivieren
      /Os Codespeicherplatz vorrangig         /Ot Codegeschwindigkeit vorrangig
      /Ox Optimierungen (Geschwindigkeit bevorzugen)
      /favor:<blend|AMD64|INTEL64|ATOM> Prozessor auswählen, für den optimiert werden soll. Mögliche Werte:
          blend - Eine Kombination verschiedener Optimierungen für mehrere unterschiedliche x64-Prozessoren
          AMD64 - 64-Bit-AMD-Prozessoren
          INTEL64 - Prozessoren mit Intel(R)64-Architektur
          ATOM - Intel(R) Atom(TM)-Prozessoren                             -CODEGENERIERUNG-/Gu[-]: Stellen Sie sicher, dass unterschiedliche Funktionen unterschiedliche Adressen aufweisen.
      /Gw[-] separate globale Variablen für Linker
      /GF Schreibgeschütztes Stringpooling aktivieren
      /Gm[-] Minimale Neuerstellung aktivieren/Gy[-] Separate Funktionen für Linker
      /GS[-] Sicherheitsüberprüfungen aktivieren
      /GR[-] C++-RTTI aktivieren
      /GX[-] C++-EH aktivieren (identisch mit /EHsc)
      /guard:cf[-] CFG aktivieren (Control Flow Guard, Ablaufsteuerungsscchutz)
      "/guard:ehcont[-]" zum Aktivieren von EH-Fortsetzungsmetadaten (CET)
      /EHs C++-EH aktivieren (ohne SEH-Ausnahmen)
      /EHa C++-EH aktivieren (mit SEH-Ausnahmen)
      /EHc nothrow als Standard für externes "C"
      /EHr immer noexcept-Laufzeitbeendigungsprüfungen generieren
      /fp:<except[-]|fast|precise|strict> Gleitkommamodell wählen:
          except[-] - Gleitkommaausnahmen beim Generieren von Code berücksichtigen
          fast: "Schnelles" Gleitkommamodell mit weniger vorhersehbaren Ergebnissen
          precise - "Präzises" Gleitkommamodell; Ergebnisse sind vorhersehbar.
          strict - "Striktes" Gleitkommamodell (impliziert /fp:except)
      /Qfast_transcendentals generieren auch bei /fp:except systeminterne Inline-FP.
      /Qspectre[-] Entschärfungen für CVE 2017-5753 aktivieren
      /Qpar[-] parallele Codegenerierung aktivieren
      /Qpar-report:1 automatische Parallelisierungsdiagnose; parallelisierte Schleifen anzeigen
      /Qpar-report:2 automatische Parallelisierungsdiagnose; nicht parallelisierte Schleifen anzeigen
      /Qvec-report:1 automatische Vektorisierungsdiagnose; vektorisierte Schleifen anzeigen
      /Qvec-report:2 automatische Vektorisierungsdiagnose; nicht vektorisierte Schleifen anzeigen
      /GL[-] Link-Zeitcodegenerierung aktivieren
      /volatile:<iso|ms> flüchtiges Modell auswählen:
          iso - Acquire-/release-Semantik bei flüchtigen Zugriffen nicht garantiert
          ms  - Acquire-/release-Semantik bei flüchtigen Zugriffen garantiert
      /GA Für Windows-Anwendung optimieren
      /Ge Stapelüberprüfung für alle Funktionen erzwingen
      /Gs[zahl] Stapelüberprüfungsaufrufe kontrollieren
      /Gh _penter-Funktionsaufruf aktivieren  /GH _pexit-Funktionsaufruf aktivieren
      /GT Fiber-sichere TLS-Zugriffe generieren
      /RTC1 Schnelle Überprüfungen aktivieren (/RTCsu)
      /RTCc Konvertierung für kleinere Typenüberprüfungen
      /RTCs Stapelrahmen-Laufzeitüberprüfung
      /RTCu Nicht initialisierte lokale Syntaxüberprüfungen
      /clr[:Option] Für Common Language Runtime kompilieren; zulässige Optionen sind:
          pure : Reine IL-Ausgabedatei generieren (kein nativer ausführbarer Code)
          safe : Reine, überprüfbare IL-Ausgabedatei generieren
          netcore : Assemblys für .NET Core-Runtime erstellen
          noAssembly : Keine Assembly erstellen
          nostdlib : .NET Framework-Systemverzeichnis beim Suchen nach Assemblys ignorieren
          nostdimport : Erforderliche Assemblys nicht implizit importieren
          initialAppDomain : Ursprüngliches AppDomain-Verhalten von Visual C++ 2002 aktivieren
          implicitKeepAlive- : Implizite Ausgabe von System::GC::KeepAlive(this) deaktivieren
      /fsanitize=address Enable address sanitizer codegen
      /homeparams Schreiben von an die Register übergebenen Parametern in den Stapel erzwingen
      /GZ Stapelüberprüfungen aktivieren (/RTCs)
      /Gv __vectorcall-Aufrufkonvention
      /arch:<AVX|AVX2|AVX512> Mindestanforderungen an die CPU-Architektur. Mögliche Werte:
         AVX - Verwendung der für AVX-fähige CPUs verfügbaren Anweisungen aktivieren
         AVX2 - Verwendung der für AVX2-fähige CPUs verfügbaren Anweisungen aktivieren
         AVX512 - Verwendung der für AVX-512-fähige CPUs verfügbaren Anweisungen aktivieren
      /QIntel-jcc-erratum: Entschärfungen für Intel JCC-Erratum aktivieren
      /Qspectre-load: Aktivieren von Spectre-Entschärfungen für alle Anweisungen, die Arbeitsspeicher laden
      /Qspectre-load-cf: Spectre-Entschärfungen für alle Ablaufsteuerungsanweisungen, die Arbeitsspeicher laden, werden aktiviert.
      /fpcvt:<IA|BC> Kompatibilität der Konvertierung von Gleitkommazahlen in ganze Zahlen ohne Vorzeichen
         IA: Ergebnisse kompatibel mit VCVTTSD2USI-Anweisung
         BC: Ergebnisse kompatibel mit VS2017- und früheren Compilern                              -AUSGABEDATEIEN-/Fa[Datei] Name der Assemblylistingdatei/FA[scu] Assemblyliste konfigurieren
      /Fd[Datei] Name der PDB-Datei           /Fe<Datei> Name der ausführbaren Datei
      /Fm[datei] Name der Zuordnungsdatei     /Fo<datei> Name der Objektdatei
      /Fp<Datei> Name der vorkompilierten Headerdatei
      /Fr[Datei] Name der Quellbrowserdatei
      /FR[Datei ] Name der erweiterten SBR-Datei
      /Fi[datei] Vorverarbeitete Datei benennen
      /Fd: <Datei> Name der PDB-Datei         /Fe: <Datei> Name der ausführbaren Datei
      /Fm: <Datei> Name der Zuordnungsdatei   /Fo: <Datei> Name der Objektdatei
      /Fp: <Datei> Name der PCH-Datei
      /FR: <Datei> Name der erweiterten SBR-Datei
      /Fi: <Datei> Vorverarbeitete Datei benennen
      /FT<dir>: Speicherort der für #import generierten Headerdateien
      /doc[Datei] XML-Dokumentationskommentare verarbeiten und optional die XDC-Datei benennen                              -PRÄPROZESSOR-/AI<Verz> Zu Assemblysuchpfad hinzufügen
      /FU<Datei> Assembly/Modul, deren/dessen Verwendung erzwungen wird
      /C Kommentare nicht entfernen           /D<name>{=|#}<text> Makro definieren
      /E In stdout vorverarbeiten             /EP In stdout vorverarbeiten, kein #line
      /P In Datei vorverarbeiten
      /Fx Eingefügten Code in Datei zusammenführen
      /FI<Datei> Name der Datei, deren Einschluss erzwungen wird
      /U<name> Vordefiniertes Makro entfernen /u Alle vordefinierten Makros entfernen
      /I<dir> Zu Include-Suchpfad hinzufügen  /X Standardspeicherorte ignorieren
      /PH generiert #pragma file_hash bei der Vorbearbeitung
      /PD: alle Makrodefinitionen drucken                                -PROGRAMMIERSPRACHE-/std:<c++14|c++17|c++latest>: C++-Standardversion
          c++14: ISO/IEC 14882:2014 (Standardwert)
          c++17: ISO/IEC 14882:2017
          c++latest: Aktueller Entwurfsstandard (Änderungen der Featuregruppe vorbehalten)
      /permissive[-] Nicht konformen Code für die Kompilierung zulassen (Änderungen der Featuresammlung vorbehalten, standardmäßig aktiviert)
      /Ze Erweiterungen aktivieren (Standard) /Za Erweiterungen deaktivieren
      /ZW WinRT-Spracherweiterungen aktivieren/Zs Nur Syntaxprüfung
      /Zc:arg1[,arg2] C++-Sprachübereinstimmung; folgende Argumente sind zulässig:
        forScope[-]           Standard-C++ für Bereichsregeln erzwingen
        wchar_t[-]            wchar_t ist der native Typ, nicht typedef
        auto[-]               Neue C++-Standardbedeutung für "auto" erzwingen
        trigraphs[-]          Trigraphen aktivieren (standardmäßig deaktiviert)
        rvalueCast[-]         Standard-C++ für explizite Typenkonvertierungsregeln erzwingen
        strictStrings[-]      Konvertierung von Zeichenfolgenliteral zu [char|wchar_t]*
                              deaktivieren (standardmäßig deaktiviert)
        implicitNoexcept[-]   Implizites "noexcept" für erforderliche Funktionen aktivieren
        threadSafeInit[-]     Thread-sichere lokale statische Initialisierung aktivieren
        inline[-]             Nicht referenzierte Funktion oder Daten entfernen, wenn es sich um
                              COMDAT handelt oder nur eine interne Bindung vorhanden ist (standardmäßig deaktiviert)
        sizedDealloc[-]       C++14-Funktionen für globale
                              Belegungsfreigabe aktivieren (standardmäßig aktiviert)
        throwingNew[-]        Annehmen, dass der new-Operator bei einem Fehler ausgelöst wird (standardmäßig deaktiviert)
        referenceBinding[-]   Ein temporäres Element wird nicht an einen nicht konstanten
                              lvalue-Verweis gebunden(standardmäßig deaktiviert)
        twoPhase-             Zweiphasen-Namenssuche deaktivieren
        ternary[-]            C++11-Standardregeln für Bedingungsoperator erzwingen (standardmäßig deaktiviert)
        noexceptTypes[-]      C++17-noexcept-Regeln erzwingen (standardmäßig aktiviert in C++17 und höher)
        alignedNew[-]         C++17-Ausrichtung dynamisch zugeordneter Objekte aktivieren (standardmäßig aktiviert)
        hiddenFriend[-]       Hiermit werden Standard-C++-Regeln zu Hidden Friends erzwungen (impliziert durch "/permissive-").
        externC[-]            Hiermit werden Standard-C++-Regeln für 'extern "C"'-Funktionen erzwungen (impliziert durch "/permissive-").
        lambda[-]             Bessere Lambdaunterstützung durch Verwendung des neueren Lambdaprozessors (standardmäßig deaktiviert)
        tlsGuards[-]          Laufzeitprüfungen für die TLS-Variableninitialisierung generieren (standardmäßig aktiviert)
        zeroSizeArrayNew[-]   Aufruf von Member "new"/"delete" für Objektarrays der Größe 0 (standardmäßig aktiviert)
      /await: Aktiviert die Erweiterung für fortsetzbare Funktionen
      /await:strict: Aktiviert die Unterstützung von C++20-Standardcoroutinen für frühere Sprachversionen.
      /constexpr:depth<N>     Grenzwert für die Rekursionstiefe für constexpr-Auswertung (Standardwert: 512)
      /constexpr:backtrace<N> N constexpr-Auswertungen in der Diagnose anzeigen (Standardwert: 10)
      /constexpr:steps<N>     constexpr-Auswertung nach N Schritten beenden (Standardwert: 100.000)
      /Zi Debuginformationen aktivieren
      /Z7 Debuginformationen nach altem Stil aktivieren
      /Zo[-] Umfangreichere Debuginformationen für optimierten Code generieren (standardmäßig aktiviert)
      Hashalgorithmus "/ZH:[MD5|SHA1|SHA_256]" für die Berechnung der Dateiprüfsumme in den Debuginformationen (Standard: MD5)
      /Zp[n] Strukturen an n-Byte-Grenze packen
      /Zl Kein Standardbibliotheksname in OBJ-Datei
      /vd{0|1|2} vtordisp deaktivieren/aktivieren
      /vm<x> Typ von Memberzeigern
      /std:<c11|c17> C-Standardversion
          c11 - ISO/IEC 9899:2011
          c17 - ISO/IEC 9899:2018
      /ZI Debuginformationen für Bearbeiten und Fortfahren aktivieren
      /openmp OpenMP 2.0-Spracherweiterungen aktivieren
      /openmp:experimental Aktivieren der OpenMP 2.0-Spracherweiterungen und der ausgewählten OpenMP 3.0 +-Spracherweiterungen
      /openmp:llvm OpenMP-Spracherweiterungen unter Verwendung der LLVM-Laufzeit                              -VERSCHIEDENES-@<Datei> Optionsantwortdatei            /?, /help Diese Hilfemeldung anzeigen
      /bigobj Erweitertes Objektformat generieren
      /c Nur kompilieren, nicht verknüpfen
      /errorReport: Option ist veraltet. Interne Compilerfehler werden an Microsoft gemeldet.
          none - Keinen Bericht senden
          prompt - Zum sofortigen Senden des Berichts auffordern
          queue - Bei nächster Administratoranmeldung zum Senden des Berichts auffordern (Standard)
          send - Bericht automatisch senden
      /FC Bei Diagnose volle Pfadnamen verwenden
      /H<zahl> Maximale Länge externer Namen  /J Standardzeichentyp ist "unsigned"
      "/MP[n]" verwendet für die Kompilierung bis zu "n" Prozesse.
      /nologo Copyright-Meldung unterdrücken  /showIncludes Includedateinamen anzeigen
      /Tc<Quelldatei> Datei als .c-Datei kompilieren
      /Tp<Quelldatei> Datei als .cpp-Datei kompilieren
      /TC Alle Dateien als .c-Datei kompilieren
      /TP Alle Dateien als .cpp-Datei kompilieren
      /V<Zeichenfolge> Versionszeichenfolge festlegen
      /Yc[Datei] PCH-Datei erstellen
      /Yd Debuginformationen in jeder OBJ-Datei ablegen
      /Yl[sym] PCH-Verweis für Debugbibliothek einfügen
      /Yu[Datei] PCH-Datei verwenden          /Y- Alle PCH-Optionen deaktivieren
      /Zm<n> Maximale Speicherzuweisung (% vom Standard)
      mit /FS die Verwendung von MSPDBSRV.EXE erzwingen
      /source-charset:<iana-name>|.nnnn: Festlegen des Quellzeichensatzes.
      /execution-charset:<iana-name>|.nnnn: Festlegen des Ausführungszeichensatzes.
      /utf-8: Festlegen des Quell- und Ausführungszeichensatzes auf UTF-8
      /validate-charset[-]: Überprüfen der UTF-8-Dateien auf zulässige Zeichen.
      /fastfail[-]: Der Modus "fast-fail" wird aktiviert.
      /JMC[-] Nur eigenen Code nativ aktivieren
      /presetPadding[-] Initialisierte Auffüllung mit Nullen für stapelbasierte Klassentypen
      /volatileMetadata[-]: Generiert Metadaten für Zugriffe auf flüchtigen Speicher.                                -VERKNÜPFEN-/LD .DLL erstellen                      /LDd .DLL-Debugbibliothek erstellen
      /LN NETMODULE erstellen                 /F<num> Stapelgröße festlegen
      /link [Linkeroptionen und -bibliotheken]/MD Mit "MSVCRT.LIB" verknüpfen
      /MT Mit "LIBCMT.LIB" verknüpfen
      /MDd Mit Debugbibliothek "MSVCRTD.LIB" verknüpfen
      /MTd Mit Debugbibliothek "LIBCMTD.LIB" verknüpfen                              -CODE ANALYSIS-/analyze[-] Systemeigene Analyse aktivieren
      /analyze:quiet[-] Keine Warnung an Konsole
      /analyze:log<Name> Warnungen an Datei
      /analyze:autolog protokollieren in *.pftlog
      /analyze:autolog:ext<ext> In *. protokollieren<ext>
      /analyze:autolog- Keine Protokolldatei
      /analyze:WX- Warnungen nicht schwerwiegend
      /analyze:stacksize<zahl> Max. Stapelrahmen
      /analyze:max_paths<zahl> Max. Pfade     /analyze:Nur Analyse, keine Codegen.                              -DIAGNOSE-/diagnostics:<Argumente,...> steuert das Format von Diagnosemeldungen:
                   classic: Behält das vorherige Format bei.
                   column[-]: Gibt Spalteninformationen aus.
                   caret[-]: Gibt die Spalte und die angegebene Quellcodezeile aus.
      /Wall Alle Warnungen deaktivieren       /w   Alle Warnungen deaktivieren
      /W<n> Warnstufe festlegen (Standard: n=1)
      /Wv:xx[.yy[.zzzzz]] Nach Version xx.yy.zzzzz eingeführte Warnungen deaktivieren
      /WX Warnungen als Fehler behandeln      /WL Einzeilige Diagnose aktivieren
      /wd<n> Warnung n deaktivieren           /we<n> Warnung n als Fehler behandeln
      /wo<n> Warnung n einmal ausgeben        /w<l><n> Warnstufe 1-4 für n festlegen
      /external:I <Pfad>:      Speicherort für externe Header
      /external:env:<Variable>:     Umgebungsvariable mit Speicherorten für externe Header
      /external:anglebrackets: Alle von spitzen Klammern (<>) eingeschlossene Header werden als extern behandelt.
      /external:W<n>:          Warnstufe für externe Header
      /external:templates[-]: Warnstufe in der gesamten Vorlageninstanziierungskette auswerten
      /sdl zusätzliche Sicherheitsfunktionen und Warnungen aktivierenDetecting CXX compiler ABI info compiled with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_fbfd1 && [1/2] Building CXX object CMakeFiles\cmTC_fbfd1.dir\CMakeCXXCompilerABI.cpp.obj
      [2/2] Linking CXX executable cmTC_fbfd1.exeDetecting C compiler ABI info compiled with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_a0d37 && [1/2] Building C object CMakeFiles\cmTC_a0d37.dir\CMakeCCompilerABI.c.obj
      [2/2] Linking C executable cmTC_a0d37.exePerforming C++ SOURCE FILE Test HAVE_WIN10_WIN32_WINNT succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_b849c && [1/2] Building CXX object CMakeFiles\cmTC_b849c.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_b849c.exe
      Source file was:
              #include <windows.h>
              #if !defined(_WIN32_WINNT) && !defined(WINVER)
              #error "_WIN32_WINNT and WINVER are not defined"
              #endif
              #if defined(_WIN32_WINNT) && (_WIN32_WINNT < 0x0A00)
              #error "_WIN32_WINNT version too low"
              #endif
              #if defined(WINVER) && (WINVER < 0x0A00)
              #error "WINVER version too low"
              #endif
              int main() { return 0; }Performing C++ SOURCE FILE Test HAVE_cxx14 succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_55a57 && [1/2] Building CXX object CMakeFiles\cmTC_55a57.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_55a57.exe
      Source file was:
       #if __cplusplus > 201103L
      // Compiler claims to support C++14, trust it
      #else
      #  error __cplusplus must be > 201103L (the value of C++11)
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_cxx17 succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_667e0 && [1/2] Building CXX object CMakeFiles\cmTC_667e0.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_667e0.exe
      Source file was:
       #if __cplusplus > 201402L
      // Compiler claims to support C++17, trust it
      #else
      #  error __cplusplus must be > 201402L (the value for C++14)
      #endif
      #include <map>  // https://bugs.llvm.org//show_bug.cgi?id=33117
      #include <variant>int main(void)
      {
          /* BEGIN TEST: */
      std::variant<int> v(42);
      int i = std::get<int>(v);
      std::visit([](const auto &) { return 1; }, v);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_cxx20 succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_67270 && [1/2] Building CXX object CMakeFiles\cmTC_67270.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_67270.exe
      Source file was:
       #if __cplusplus > 201703L
      // Compiler claims to support C++20, trust it
      #else
      #  error __cplusplus must be > 201703L (the value for C++17)
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test TEST_enable_new_dtags succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_4a161 && [1/2] Building CXX object CMakeFiles\cmTC_4a161.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_4a161.exe
      Source file was:
      int main() { return 0; }
      Performing C++ SOURCE FILE Test TEST_gdb_index succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_580e6 && [1/2] Building CXX object CMakeFiles\cmTC_580e6.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_580e6.exe
      Source file was:
      int main() { return 0; }
      Performing C++ SOURCE FILE Test HAVE_signaling_nan succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_eaf92 && [1/2] Building CXX object CMakeFiles\cmTC_eaf92.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_eaf92.exe
      Source file was:
       #include <limits>int main(void)
      {
          /* BEGIN TEST: */
      using B = std::numeric_limits<double>;
      static_assert(B::has_signaling_NaN, "System lacks signaling NaN");
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_alloca_malloc_h succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_a3292 && [1/2] Building CXX object CMakeFiles\cmTC_a3292.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_a3292.exe
      Source file was:
       #include <malloc.h>int main(void)
      {
          /* BEGIN TEST: */
      alloca(1);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_stack_protector succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_c5d12 && [1/2] Building CXX object CMakeFiles\cmTC_c5d12.dir\src.cxx.obj
      cl : Befehlszeile warning D9002 : Unbekannte Option "-fstack-protector-strong" wird ignoriert.
      [2/2] Linking CXX executable cmTC_c5d12.exe
      Source file was:
       #ifdef __QNXNTO__
      #  include <sys/neutrino.h>
      #  if _NTO_VERSION < 700
      #    error stack-protector not used (by default) before QNX 7.0.0.
      #  endif
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_STDATOMIC succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_75a98 && [1/2] Building CXX object CMakeFiles\cmTC_75a98.dir\src.cxx.obj
      C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\CMakeFiles\CMakeTmp\src.cxx(17): warning C4312: "Typumwandlung": Konvertierung von "unsigned int" in größeren Typ "void *"
      [2/2] Linking CXX executable cmTC_75a98.exe
      Source file was:
      #include <atomic>
      #include <cstdint>void test(volatile std::atomic<std::int64_t> &a)
      {
          std::int64_t v = a.load(std::memory_order_acquire);
          while (!a.compare_exchange_strong(v, v + 1,
                                            std::memory_order_acq_rel,
                                            std::memory_order_acquire)) {
              v = a.exchange(v - 1);
          }
          a.store(v + 1, std::memory_order_release);
      }int main(int, char **)
      {
          void *ptr = (void*)0xffffffc0; // any random pointer
          test(*reinterpret_cast<std::atomic<std::int64_t> *>(ptr));
          return 0;
      }
      Performing C++ SOURCE FILE Test HAVE_atomicfptr succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_42496 && [1/2] Building CXX object CMakeFiles\cmTC_42496.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_42496.exe
      Source file was:
       #include <atomic>
      typedef void (*fptr)(int);
      typedef std::atomic<fptr> atomicfptr;
      void testfunction(int) { }
      void test(volatile atomicfptr &a)
      {
          fptr v = a.load(std::memory_order_acquire);
          while (!a.compare_exchange_strong(v, &testfunction,
                                            std::memory_order_acq_rel,
                                            std::memory_order_acquire)) {
              v = a.exchange(&testfunction);
          }
          a.store(&testfunction, std::memory_order_release);
      }int main(void)
      {
          /* BEGIN TEST: */
      atomicfptr fptr(testfunction);
      test(fptr);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_cxx11_future succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_acc03 && [1/2] Building CXX object CMakeFiles\cmTC_acc03.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_acc03.exe
      Source file was:
       #include <future>int main(void)
      {
          /* BEGIN TEST: */
      std::future<int> f = std::async([]() { return 42; });
      (void)f.get();
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_cxx11_random succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_4856f && [1/2] Building CXX object CMakeFiles\cmTC_4856f.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_4856f.exe
      Source file was:
       #include <random>int main(void)
      {
          /* BEGIN TEST: */
      std::mt19937 mt(0);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_cxx17_filesystem succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_d803f && [1/2] Building CXX object CMakeFiles\cmTC_d803f.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_d803f.exe
      Source file was:
       #include <filesystem>int main(void)
      {
          /* BEGIN TEST: */
      std::filesystem::copy(
          std::filesystem::path("./file"),
          std::filesystem::path("./other"));
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_openssl_headers succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_c41c3 && [1/2] Building CXX object CMakeFiles\cmTC_c41c3.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_c41c3.exe
      Source file was:
       #include <openssl/ssl.h>
      #include <openssl/opensslv.h>
      #if !defined(OPENSSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER-0 < 0x10101000L
      #  error OpenSSL >= 1.1.1 is required
      #endif
      #if !defined(OPENSSL_NO_EC) && !defined(SSL_CTRL_SET_CURVES)
      #  error OpenSSL was reported as >= 1.1.1 but is missing required features, possibly it is libressl which is unsupported
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_openssl succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_e529c && [1/2] Building CXX object CMakeFiles\cmTC_e529c.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_e529c.exe
      Source file was:
       #include <openssl/ssl.h>
      #include <openssl/opensslv.h>
      #if !defined(OPENSSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER-0 < 0x10101000L
      #  error OpenSSL >= 1.1.1 is required
      #endif
      #if !defined(OPENSSL_NO_EC) && !defined(SSL_CTRL_SET_CURVES)
      #  error OpenSSL was reported as >= 1.1.1 but is missing required features, possibly it is libressl which is unsupported
      #endifint main(void)
      {
          /* BEGIN TEST: */
      SSL_free(SSL_new(0));
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_dtls succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_3d87a && [1/2] Building CXX object CMakeFiles\cmTC_3d87a.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_3d87a.exe
      Source file was:
       #include <openssl/ssl.h>
      #if defined(OPENSSL_NO_DTLS) || !defined(DTLS1_2_VERSION)
      #  error OpenSSL without DTLS support
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_ocsp succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_a39cc && [1/2] Building CXX object CMakeFiles\cmTC_a39cc.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_a39cc.exe
      Source file was:
       #include <openssl/ssl.h>
      #include <openssl/ocsp.h>
      #if defined(OPENSSL_NO_OCSP) || defined(OPENSSL_NO_TLSEXT)
      #  error OpenSSL without OCSP stapling
      #endifint main(void)
      {
          /* BEGIN TEST: */
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_networklistmanager succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_fb1cd && [1/2] Building CXX object CMakeFiles\cmTC_fb1cd.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_fb1cd.exe
      Source file was:
       #include <netlistmgr.h>
      #include <wrl/client.h>int main(void)
      {
          /* BEGIN TEST: */
      using namespace Microsoft::WRL;
      ComPtr<INetworkListManager> networkListManager;
      ComPtr<IConnectionPoint> connectionPoint;
      ComPtr<IConnectionPointContainer> connectionPointContainer;
      networkListManager.As(&connectionPointContainer);
      connectionPointContainer->FindConnectionPoint(IID_INetworkConnectionEvents, &connectionPoint);
          /* END TEST: */
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_directwrite succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_4dd26 && [1/2] Building CXX object CMakeFiles\cmTC_4dd26.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_4dd26.exe
      Source file was:
       #include <dwrite_2.h>
      int main(int, char **)
      {
          IUnknown *factory = nullptr;
          DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory2),
                              &factory);
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_directwrite3 succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_c8487 && [1/2] Building CXX object CMakeFiles\cmTC_c8487.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_c8487.exe
      Source file was:
       #include <dwrite_3.h>
      int main(int, char **)
      {
          IUnknown *factory = nullptr;
          DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory3),
                              &factory);
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_d2d1 succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_beed5 && [1/2] Building CXX object CMakeFiles\cmTC_beed5.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_beed5.exe
      Source file was:
       #include <d2d1.h>
      int main(int, char **)
      {
          void *factory = nullptr;
          D2D1_FACTORY_OPTIONS options;
          ZeroMemory(&options, sizeof(D2D1_FACTORY_OPTIONS));
          D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED, GUID{}, &options, &factory);
          return 0;
      }Performing C++ SOURCE FILE Test HAVE_d2d1_1 succeeded with the following output:
      Change Dir: C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e/CMakeFiles/CMakeTmpRun Build Command(s):C:/Users/G91WOQS/.conan/data/ninja/1.10.2/_/_/package/01edd76db8e16db9b38c3cca44ec466a9444c388/bin/ninja.exe cmTC_afcce && [1/2] Building CXX object CMakeFiles\cmTC_afcce.dir\src.cxx.obj
      [2/2] Linking CXX executable cmTC_afcce.exe
      Source file was:
       #include <d2d1_1.h>
      int main(int, char **)
      {
          ID2D1Factory1 *d2dFactory;
          D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED, &d2dFactory);
          return 0;
      }
      qt/6.2.3@test/test:
      qt/6.2.3@test/test: ERROR: Package '35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e' build failed
      qt/6.2.3@test/test: WARN: Build folder C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e
      ERROR: qt/6.2.3@test/test: Error in build() method, line 674
              cmake = self._configure_cmake()
      while calling '_configure_cmake', line 624
              self._cmake.configure(source_folder="qt6")
              ConanException: Error 1 while executing cd C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e && cmake -G "Ninja" -DCONAN_LINK_RUNTIME="/MDd" -DCMAKE_BUILD_TYPE="Debug" -DCONAN_CMAKE_CXX_STANDARD="20" -DCONAN_CMAKE_CXX_EXTENSIONS="OFF" -DCONAN_STD_CXX_FLAG="/std:c++latest" -DCONAN_IN_LOCAL_CACHE="ON" -DCONAN_COMPILER="Visual Studio" -DCONAN_COMPILER_VERSION="16" -DCONAN_CXX_FLAGS="/MP16" -DCONAN_C_FLAGS="/MP16" -DBUILD_SHARED_LIBS="OFF" -DCMAKE_INSTALL_PREFIX="C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\package\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e" -DCMAKE_INSTALL_BINDIR="bin" -DCMAKE_INSTALL_SBINDIR="bin" -DCMAKE_INSTALL_LIBEXECDIR="bin" -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_INCLUDEDIR="include" -DCMAKE_INSTALL_OLDINCLUDEDIR="include" -DCMAKE_INSTALL_DATAROOTDIR="share" -DCMAKE_MODULE_PATH="C:/Users/G91WOQS/.conan/data/qt/6.2.3/test/test/build/35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e" -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY="ON" -DCONAN_EXPORTED="1" -DINSTALL_MKSPECSDIR="C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\package\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\res\archdatadir\mkspecs" -DINSTALL_ARCHDATADIR="C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\package\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\res\archdatadir" -DINSTALL_LIBEXECDIR="C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\package\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\bin" -DINSTALL_DATADIR="C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\package\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\res\datadir" -DINSTALL_SYSCONFDIR="C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\package\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\res\sysconfdir" -DQT_BUILD_TESTS="OFF" -DQT_BUILD_EXAMPLES="OFF" -DFEATURE_optimize_size="OFF" -DBUILD_qtsvg="OFF" -DBUILD_qtdeclarative="OFF" -DBUILD_qtactiveqt="OFF" -DBUILD_qtmultimedia="ON" -DBUILD_qttools="OFF" -DBUILD_qttranslations="OFF" -DBUILD_qtdoc="OFF" -DBUILD_qtrepotools="OFF" -DBUILD_qtqa="OFF" -DBUILD_qtpositioning="ON" -DBUILD_qtsensors="OFF" -DBUILD_qtconnectivity="OFF" -DBUILD_qtwayland="OFF" -DBUILD_qt3d="OFF" -DBUILD_qtimageformats="ON" -DBUILD_qtserialbus="OFF" -DBUILD_qtserialport="ON" -DBUILD_qtwebsockets="OFF" -DBUILD_qtwebchannel="OFF" -DBUILD_qtwebengine="OFF" -DBUILD_qtwebview="OFF" -DBUILD_qtcharts="OFF" -DBUILD_qtdatavis3d="OFF" -DBUILD_qtvirtualkeyboard="OFF" -DBUILD_qtscxml="OFF" -DBUILD_qtnetworkauth="OFF" -DBUILD_qtremoteobjects="OFF" -DBUILD_qtlottie="OFF" -DBUILD_qtquicktimeline="OFF" -DBUILD_qtquick3d="OFF" -DBUILD_qtshadertools="ON" -DBUILD_qt5compat="OFF" -DBUILD_qtcoap="OFF" -DBUILD_qtmqtt="OFF" -DBUILD_qtopcua="OFF" -DFEATURE_system_zlib="ON" -DINPUT_opengl="dynamic" -DINPUT_openssl="linked" -DFEATURE_dbus="OFF" -DFEATURE_glib="OFF" -DFEATURE_icu="OFF" -DFEATURE_fontconfig="OFF" -DFEATURE_sql_mysql="OFF" -DFEATURE_sql_psql="OFF" -DFEATURE_sql_odbc="OFF" -DFEATURE_gui="ON" -DFEATURE_widgets="ON" -DFEATURE_zstd="OFF" -DFEATURE_vulkan="OFF" -DFEATURE_brotli="OFF" -DFEATURE_doubleconversion="OFF" -DFEATURE_system_doubleconversion="OFF" -DFEATURE_freetype="OFF" -DFEATURE_system_freetype="OFF" -DFEATURE_harfbuzz="OFF" -DFEATURE_system_harfbuzz="OFF" -DFEATURE_jpeg="OFF" -DFEATURE_system_jpeg="OFF" -DFEATURE_png="OFF" -DFEATURE_system_png="OFF" -DFEATURE_sqlite="OFF" -DFEATURE_system_sqlite="OFF" -DFEATURE_pcre2="OFF" -DFEATURE_system_pcre2="OFF" -DQT_QMAKE_TARGET_MKSPEC="win32-msvc" -DFEATURE_pkg_config="ON" -Wno-dev C:\Users\G91WOQS\.conan\data\qt\6.2.3\test\test\source\qt6

      With this changed recipe, qt fails building. cmake complains about missing WrapPCRE2 and WrapFreetype. If I use system one, all is fine. It seems that FindWrapBundledPcre2ConfigExtra.cmake cannot be found, although it located in

      qt\6.2.3\test\test\build\35cf557d8e1a31fd7ab015330fe8d1c42e1fc52e\qtbase\lib\cmake\Qt6.

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            qtbuildsystem Qt Build System Team
            sroeber Steffen Roeber
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes