# Copyright (C) 2024 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause


####### 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 QtModuleConfigPrivate.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)

# Find required dependencies, if any.
if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateDependencies.cmake")
    include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateDependencies.cmake")
    _qt_internal_suggest_dependency_debugging(LabsSynchronizerPrivate
        __qt_LabsSynchronizerPrivate_pkg ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE)
endif()

# If *ConfigDependencies.cmake exists, the variable value will be defined there.
# Don't override it in that case.
if(NOT DEFINED "Qt6LabsSynchronizerPrivate_FOUND")
    set("Qt6LabsSynchronizerPrivate_FOUND" TRUE)
endif()

if(NOT __qt_LabsSynchronizer_always_load_private_module)
    _qt_internal_show_private_module_warning(LabsSynchronizerPrivate)
endif()

# Do the checks inside Targets.cmake even when the file is still being generated
include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateTargetsPrecheck.cmake")

if(NOT __qt_LabsSynchronizerPrivate_skip_include_targets_file AND Qt6LabsSynchronizerPrivate_FOUND)
    include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateTargets.cmake")
    include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateAdditionalTargetInfo.cmake")
    include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateExtraProperties.cmake"
        OPTIONAL)
    set(__qt_LabsSynchronizerPrivate_targets_file_included ON)
endif()

if(TARGET Qt6::LabsSynchronizerPrivate)
    if(NOT QT_NO_CREATE_VERSIONLESS_TARGETS)
        if(CMAKE_VERSION VERSION_LESS 3.18 OR QT_USE_OLD_VERSION_LESS_TARGETS)
            include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateVersionlessTargets.cmake")
        else()
            include("${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateVersionlessAliasTargets.cmake")
        endif()
    endif()
else()
    set(Qt6LabsSynchronizerPrivate_FOUND FALSE)
    if(NOT DEFINED Qt6LabsSynchronizerPrivate_NOT_FOUND_MESSAGE)
        set(Qt6LabsSynchronizerPrivate_NOT_FOUND_MESSAGE
            "Target \"Qt6::LabsSynchronizerPrivate\" was not found.")

        if(__qt_LabsSynchronizerPrivate_skip_include_targets_file)
            string(APPEND Qt6LabsSynchronizerPrivate_NOT_FOUND_MESSAGE
                "Possibly due to __qt_LabsSynchronizerPrivate_skip_include_targets_file being set to TRUE and thus "
                "${CMAKE_CURRENT_LIST_DIR}/Qt6LabsSynchronizerPrivateTargets.cmake was not "
                "included to define the target.")
        endif()
    endif()
endif()
