diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 3f957dcea..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QICNSPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QICNSPlugin) -get_target_property(_qt_imported_location Qt6::QICNSPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QICNSPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QICNSPlugin" for configuration "Release" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QICNSPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QICNSPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QICNSPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QICNSPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake deleted file mode 100644 index af858de35..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtImageFormats" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake deleted file mode 100644 index 920030a67..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake deleted file mode 100644 index e552eeac8..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QICNSPlugin" for configuration "Debug" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QICNSPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/imageformats/qicnsd.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QICNSPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QICNSPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qicnsd.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index 3c413017e..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QICNSPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QICNSPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/imageformats/qicns.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QICNSPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QICNSPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qicns.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake deleted file mode 100644 index 2f29f5d3b..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QICNSPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QICNSPlugin -add_library(Qt6::QICNSPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QICNSPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "1" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QICNSPlugin" - QT_PLUGIN_TYPE "imageformats" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 6d5ba35b4..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QMinimalIntegrationPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QMinimalIntegrationPlugin) -get_target_property(_qt_imported_location Qt6::QMinimalIntegrationPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QMinimalIntegrationPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "Release" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QMinimalIntegrationPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QMinimalIntegrationPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QMinimalIntegrationPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake deleted file mode 100644 index 1ede24466..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtBase" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake deleted file mode 100644 index 1f12218fb..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake deleted file mode 100644 index a1f0fe6bf..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "Debug" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QMinimalIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/platforms/qminimald.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QMinimalIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QMinimalIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qminimald.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index d54a2cedd..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QMinimalIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/platforms/qminimal.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QMinimalIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QMinimalIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qminimal.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake deleted file mode 100644 index b1b513f0e..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QMinimalIntegrationPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QMinimalIntegrationPlugin -add_library(Qt6::QMinimalIntegrationPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QMinimalIntegrationPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "0" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QMinimalIntegrationPlugin" - QT_PLUGIN_TYPE "platforms" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 07c91441a..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QOffscreenIntegrationPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QOffscreenIntegrationPlugin) -get_target_property(_qt_imported_location Qt6::QOffscreenIntegrationPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QOffscreenIntegrationPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "Release" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QOffscreenIntegrationPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QOffscreenIntegrationPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QOffscreenIntegrationPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake deleted file mode 100644 index 7af631c9b..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtBase" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake deleted file mode 100644 index 08866ce22..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake deleted file mode 100644 index c5dc36223..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "Debug" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QOffscreenIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreend.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QOffscreenIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QOffscreenIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreend.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index f1967a6a2..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QOffscreenIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreen.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QOffscreenIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QOffscreenIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreen.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake deleted file mode 100644 index 9c2541bba..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QOffscreenIntegrationPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QOffscreenIntegrationPlugin -add_library(Qt6::QOffscreenIntegrationPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QOffscreenIntegrationPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "0" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QOffscreenIntegrationPlugin" - QT_PLUGIN_TYPE "platforms" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 7a1c8476c..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QTgaPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QTgaPlugin) -get_target_property(_qt_imported_location Qt6::QTgaPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QTgaPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QTgaPlugin" for configuration "Release" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QTgaPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QTgaPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QTgaPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QTgaPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake deleted file mode 100644 index 0ee795f5c..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtImageFormats" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake deleted file mode 100644 index 0f22b0416..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake deleted file mode 100644 index 4cba4ffaf..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QTgaPlugin" for configuration "Debug" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QTgaPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/imageformats/qtgad.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QTgaPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QTgaPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qtgad.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index 171e8e73f..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QTgaPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QTgaPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/imageformats/qtga.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QTgaPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QTgaPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qtga.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake deleted file mode 100644 index 52bbb0384..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QTgaPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QTgaPlugin -add_library(Qt6::QTgaPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QTgaPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "1" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QTgaPlugin" - QT_PLUGIN_TYPE "imageformats" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake deleted file mode 100644 index a179f3e76..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QWbmpPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QWbmpPlugin) -get_target_property(_qt_imported_location Qt6::QWbmpPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QWbmpPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QWbmpPlugin" for configuration "Release" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QWbmpPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QWbmpPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QWbmpPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QWbmpPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake deleted file mode 100644 index cdf47068d..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtImageFormats" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake deleted file mode 100644 index 3c25d3014..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake deleted file mode 100644 index 7e06c324e..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QWbmpPlugin" for configuration "Debug" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QWbmpPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmpd.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QWbmpPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QWbmpPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmpd.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index 8a76c1f7a..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QWbmpPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QWbmpPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmp.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QWbmpPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QWbmpPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmp.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake b/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake deleted file mode 100644 index a2137e791..000000000 --- a/Qt6.5.1/ARM64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QWbmpPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QWbmpPlugin -add_library(Qt6::QWbmpPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QWbmpPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "1" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QWbmpPlugin" - QT_PLUGIN_TYPE "imageformats" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 3f957dcea..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QICNSPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QICNSPlugin) -get_target_property(_qt_imported_location Qt6::QICNSPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QICNSPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QICNSPlugin" for configuration "Release" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QICNSPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QICNSPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QICNSPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QICNSPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake deleted file mode 100644 index af858de35..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtImageFormats" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake deleted file mode 100644 index 920030a67..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake deleted file mode 100644 index e552eeac8..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QICNSPlugin" for configuration "Debug" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QICNSPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/imageformats/qicnsd.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QICNSPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QICNSPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qicnsd.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index 3c413017e..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QICNSPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QICNSPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QICNSPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/imageformats/qicns.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QICNSPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QICNSPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qicns.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake deleted file mode 100644 index 2f29f5d3b..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QICNSPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QICNSPlugin -add_library(Qt6::QICNSPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QICNSPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "1" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QICNSPlugin" - QT_PLUGIN_TYPE "imageformats" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QICNSPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 6d5ba35b4..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QMinimalIntegrationPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QMinimalIntegrationPlugin) -get_target_property(_qt_imported_location Qt6::QMinimalIntegrationPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QMinimalIntegrationPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "Release" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QMinimalIntegrationPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QMinimalIntegrationPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QMinimalIntegrationPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake deleted file mode 100644 index 1ede24466..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtBase" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake deleted file mode 100644 index 1f12218fb..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake deleted file mode 100644 index a1f0fe6bf..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "Debug" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QMinimalIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/platforms/qminimald.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QMinimalIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QMinimalIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qminimald.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index d54a2cedd..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QMinimalIntegrationPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QMinimalIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QMinimalIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/platforms/qminimal.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QMinimalIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QMinimalIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qminimal.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake deleted file mode 100644 index b1b513f0e..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QMinimalIntegrationPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QMinimalIntegrationPlugin -add_library(Qt6::QMinimalIntegrationPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QMinimalIntegrationPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "0" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QMinimalIntegrationPlugin" - QT_PLUGIN_TYPE "platforms" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QMinimalIntegrationPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 07c91441a..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QOffscreenIntegrationPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QOffscreenIntegrationPlugin) -get_target_property(_qt_imported_location Qt6::QOffscreenIntegrationPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QOffscreenIntegrationPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "Release" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QOffscreenIntegrationPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QOffscreenIntegrationPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QOffscreenIntegrationPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake deleted file mode 100644 index 7af631c9b..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtBase" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake deleted file mode 100644 index 08866ce22..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake deleted file mode 100644 index c5dc36223..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "Debug" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QOffscreenIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreend.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QOffscreenIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QOffscreenIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreend.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index f1967a6a2..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QOffscreenIntegrationPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QOffscreenIntegrationPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QOffscreenIntegrationPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreen.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QOffscreenIntegrationPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QOffscreenIntegrationPlugin "${_IMPORT_PREFIX}/./plugins/platforms/qoffscreen.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake deleted file mode 100644 index 9c2541bba..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QOffscreenIntegrationPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QOffscreenIntegrationPlugin -add_library(Qt6::QOffscreenIntegrationPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QOffscreenIntegrationPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "0" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QOffscreenIntegrationPlugin" - QT_PLUGIN_TYPE "platforms" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QOffscreenIntegrationPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake deleted file mode 100644 index 7a1c8476c..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QTgaPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QTgaPlugin) -get_target_property(_qt_imported_location Qt6::QTgaPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QTgaPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QTgaPlugin" for configuration "Release" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QTgaPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QTgaPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QTgaPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QTgaPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake deleted file mode 100644 index 0ee795f5c..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtImageFormats" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake deleted file mode 100644 index 0f22b0416..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake deleted file mode 100644 index 4cba4ffaf..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QTgaPlugin" for configuration "Debug" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QTgaPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/imageformats/qtgad.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QTgaPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QTgaPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qtgad.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index 171e8e73f..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QTgaPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QTgaPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QTgaPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/imageformats/qtga.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QTgaPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QTgaPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qtga.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake deleted file mode 100644 index 52bbb0384..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QTgaPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QTgaPlugin -add_library(Qt6::QTgaPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QTgaPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "1" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QTgaPlugin" - QT_PLUGIN_TYPE "imageformats" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QTgaPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake deleted file mode 100644 index a179f3e76..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ -# Additional target information for Qt6QWbmpPlugin -if(NOT DEFINED QT_DEFAULT_IMPORT_CONFIGURATION) - set(QT_DEFAULT_IMPORT_CONFIGURATION RELWITHDEBINFO) -endif() -__qt_internal_promote_target_to_global_checked(Qt6::QWbmpPlugin) -get_target_property(_qt_imported_location Qt6::QWbmpPlugin IMPORTED_LOCATION_RELWITHDEBINFO) -get_target_property(_qt_imported_location_default Qt6::QWbmpPlugin IMPORTED_LOCATION_${QT_DEFAULT_IMPORT_CONFIGURATION}) - -# Import target "Qt6::QWbmpPlugin" for configuration "Release" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - -if(_qt_imported_location) - set_property(TARGET Qt6::QWbmpPlugin PROPERTY IMPORTED_LOCATION_RELEASE "${_qt_imported_location}") -endif() - -# Import target "Qt6::QWbmpPlugin" for configuration "MinSizeRel" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) - -if(_qt_imported_location) - set_property(TARGET Qt6::QWbmpPlugin PROPERTY IMPORTED_LOCATION_MINSIZEREL "${_qt_imported_location}") -endif() - -# Default configuration -if(_qt_imported_location_default) - set_property(TARGET Qt6::QWbmpPlugin PROPERTY IMPORTED_LOCATION "${_qt_imported_location_default}") -endif() - -unset(_qt_imported_location) -unset(_qt_imported_location_default) -unset(_qt_imported_soname) -unset(_qt_imported_soname_default) -unset(_qt_imported_configs) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake deleted file mode 100644 index cdf47068d..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake +++ /dev/null @@ -1,53 +0,0 @@ -include_guard(DIRECTORY) - -if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_BUILD_STANDALONE_TESTS) - # We're building a Qt repository. - # Skip this plugin if it has not been provided by one of this repo's dependencies. - string(TOLOWER "QtImageFormats" lower_case_project_name) - if(NOT lower_case_project_name IN_LIST QT_REPO_DEPENDENCIES) - return() - endif() -endif() - - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was QtPluginConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -cmake_minimum_required(VERSION 3.16...3.21) - -include(CMakeFindDependencyMacro) - -get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_import_prefix "${_import_prefix}" REALPATH) - -if (NOT QT_NO_CREATE_TARGETS) - # Find required dependencies, if any. - if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginDependencies.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginDependencies.cmake") - endif() - - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginTargets.cmake") - include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginAdditionalTargetInfo.cmake") -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake deleted file mode 100644 index 3c25d3014..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Include the basic version config file to get results of regular version checking. -include("${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginConfigVersionImpl.cmake") - -set(__qt_disable_package_version_check FALSE) - -# Allow to opt out of the version check. -if(QT_NO_PACKAGE_VERSION_CHECK) - set(__qt_disable_package_version_check TRUE) -endif() - -# Extra CMake code begin - -# Extra CMake code end - -if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE) - set(__qt_package_version_incompatible TRUE) -else() - set(__qt_package_version_incompatible FALSE) -endif() - -if(__qt_disable_package_version_check) - # Don't show the warning needlessly if we know that we're doing an exact search, and the - # version found is not the exactly same. - if(${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION_EXACT - AND NOT PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING TRUE) - endif() - - # Warn if version check is disabled regardless if it's a Qt repo build or user project build. - # Allow to opt out of warning. - if(__qt_package_version_incompatible AND NOT QT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING - AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) - message(WARNING - "Package ${PACKAGE_FIND_NAME} with version ${PACKAGE_VERSION} was accepted as " - "compatible because QT_NO_PACKAGE_VERSION_CHECK was set to TRUE. There is no guarantee " - "the build will succeed. You can silence this warning by passing " - "-DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") - endif() - - # Mark version as compatible. This is how we disable the version check. - set(PACKAGE_VERSION_COMPATIBLE TRUE) - unset(PACKAGE_VERSION_UNSUITABLE) - -# If QT_REPO_MODULE_VERSION is set, that means we are building a Qt repo. Show message that one can -# disable the check if they need to. -elseif(QT_REPO_MODULE_VERSION AND __qt_package_version_incompatible) - if(PACKAGE_FIND_VERSION_RANGE) - set(__qt_package_version_message_prefix "Version range ${PACKAGE_FIND_VERSION_RANGE}") - else() - set(__qt_package_version_message_prefix "Version ${PACKAGE_FIND_VERSION}") - endif() - - message(WARNING - "${__qt_package_version_message_prefix} of package ${PACKAGE_FIND_NAME} was requested but " - "an incompatible version was found: ${PACKAGE_VERSION}. You can pass " - "-DQT_NO_PACKAGE_VERSION_CHECK=TRUE to disable the version check and force the " - "incompatible version to be used. There is no guarantee the build will succeed. " - "Use at your own risk. " - "You can silence this warning by passing -DQT_NO_PACKAGE_VERSION_INCOMPATIBLE_WARNING=TRUE") -endif() - -unset(__qt_disable_package_version_check) -unset(__qt_disable_package_version_check_due_to_developer_build) -unset(__qt_package_version_message_prefix) -unset(__qt_package_version_incompatible) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake deleted file mode 100644 index d4d963615..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. -# The variable CVF_VERSION must be set before calling configure_file(). - -set(PACKAGE_VERSION "6.5.1") - -if (PACKAGE_FIND_VERSION_RANGE) - # Package version must be in the requested version range - if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - endif() -else() - if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - else() - set(PACKAGE_VERSION_COMPATIBLE TRUE) - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if(CMAKE_SIZEOF_VOID_P STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake deleted file mode 100644 index 7e06c324e..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "Debug". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QWbmpPlugin" for configuration "Debug" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) -set_target_properties(Qt6::QWbmpPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_DEBUG "" - IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmpd.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QWbmpPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QWbmpPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmpd.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake deleted file mode 100644 index 8a76c1f7a..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ -#---------------------------------------------------------------- -# Generated CMake target import file for configuration "RelWithDebInfo". -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Import target "Qt6::QWbmpPlugin" for configuration "RelWithDebInfo" -set_property(TARGET Qt6::QWbmpPlugin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) -set_target_properties(Qt6::QWbmpPlugin PROPERTIES - IMPORTED_COMMON_LANGUAGE_RUNTIME_RELWITHDEBINFO "" - IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmp.dll" - ) - -list(APPEND _cmake_import_check_targets Qt6::QWbmpPlugin ) -list(APPEND _cmake_import_check_files_for_Qt6::QWbmpPlugin "${_IMPORT_PREFIX}/./plugins/imageformats/qwbmp.dll" ) - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) diff --git a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake b/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake deleted file mode 100644 index a2137e791..000000000 --- a/Qt6.5.1/x64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# Generated by CMake - -if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) - message(FATAL_ERROR "CMake >= 2.8.0 required") -endif() -if(CMAKE_VERSION VERSION_LESS "2.8.3") - message(FATAL_ERROR "CMake >= 2.8.3 required") -endif() -cmake_policy(PUSH) -cmake_policy(VERSION 2.8.3...3.24) -#---------------------------------------------------------------- -# Generated CMake target import file. -#---------------------------------------------------------------- - -# Commands may need to know the format version. -set(CMAKE_IMPORT_FILE_VERSION 1) - -# Protect against multiple inclusion, which would fail when already imported targets are added once more. -set(_cmake_targets_defined "") -set(_cmake_targets_not_defined "") -set(_cmake_expected_targets "") -foreach(_cmake_expected_target IN ITEMS Qt6::QWbmpPlugin) - list(APPEND _cmake_expected_targets "${_cmake_expected_target}") - if(TARGET "${_cmake_expected_target}") - list(APPEND _cmake_targets_defined "${_cmake_expected_target}") - else() - list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") - endif() -endforeach() -unset(_cmake_expected_target) -if(_cmake_targets_defined STREQUAL _cmake_expected_targets) - unset(_cmake_targets_defined) - unset(_cmake_targets_not_defined) - unset(_cmake_expected_targets) - unset(CMAKE_IMPORT_FILE_VERSION) - cmake_policy(POP) - return() -endif() -if(NOT _cmake_targets_defined STREQUAL "") - string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") - string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") - message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") -endif() -unset(_cmake_targets_defined) -unset(_cmake_targets_not_defined) -unset(_cmake_expected_targets) - - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -# Create imported target Qt6::QWbmpPlugin -add_library(Qt6::QWbmpPlugin MODULE IMPORTED) - -set_target_properties(Qt6::QWbmpPlugin PROPERTIES - COMPATIBLE_INTERFACE_STRING "QT_MAJOR_VERSION" - INTERFACE_QT_MAJOR_VERSION "6" - QT_DEFAULT_PLUGIN "1" - QT_MODULE "Gui" - QT_PLUGIN_CLASS_NAME "QWbmpPlugin" - QT_PLUGIN_TYPE "imageformats" - _qt_package_version "6.5.1" -) - -# Load information for each installed configuration. -file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/Qt6QWbmpPluginTargets-*.cmake") -foreach(_cmake_config_file IN LISTS _cmake_config_files) - include("${_cmake_config_file}") -endforeach() -unset(_cmake_config_file) -unset(_cmake_config_files) - -# Cleanup temporary variables. -set(_IMPORT_PREFIX) - -# Loop over all imported files and verify that they actually exist -foreach(_cmake_target IN LISTS _cmake_import_check_targets) - foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") - if(NOT EXISTS "${_cmake_file}") - message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file - \"${_cmake_file}\" -but this file does not exist. Possible reasons include: -* The file was deleted, renamed, or moved to another location. -* An install or uninstall procedure did not complete successfully. -* The installation package was faulty and contained - \"${CMAKE_CURRENT_LIST_FILE}\" -but not all the files it references. -") - endif() - endforeach() - unset(_cmake_file) - unset("_cmake_import_check_files_for_${_cmake_target}") -endforeach() -unset(_cmake_target) -unset(_cmake_import_check_targets) - -# This file does not depend on other imported targets which have -# been exported from the same project but in a separate export set. - -# Commands beyond this point should not need to know the version. -set(CMAKE_IMPORT_FILE_VERSION) -cmake_policy(POP)