2024-02-20 09:45:50 +01:00
|
|
|
# Copyright (C) 2024 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2020-02-11 15:38:47 +01:00
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
2020-11-30 18:46:49 +11:00
|
|
|
cmake_minimum_required(VERSION @min_new_policy_version@...@max_new_policy_version@)
|
|
|
|
|
2020-02-11 15:38:47 +01:00
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
|
|
|
|
# Extra cmake code begin
|
|
|
|
@extra_cmake_code@
|
|
|
|
# Extra cmake code end
|
|
|
|
|
|
|
|
# Find required dependencies, if any.
|
|
|
|
if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@Dependencies.cmake")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@Dependencies.cmake")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT QT_NO_CREATE_TARGETS)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@Targets.cmake")
|
2020-09-22 22:16:20 +02:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@AdditionalTargetInfo.cmake")
|
2020-02-11 15:38:47 +01:00
|
|
|
if(NOT QT_NO_CREATE_VERSIONLESS_TARGETS)
|
2024-01-24 16:12:19 +01:00
|
|
|
if(CMAKE_VERSION VERSION_LESS 3.18 OR QT_USE_OLD_VERSION_LESS_TARGETS)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@VersionlessTargets.cmake")
|
|
|
|
else()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@VersionlessAliasTargets.cmake")
|
|
|
|
endif()
|
2020-02-11 15:38:47 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach(extra_cmake_include @extra_cmake_includes@)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/${extra_cmake_include}")
|
|
|
|
endforeach()
|