qt 6.5.1 original

This commit is contained in:
kleuter
2023-10-29 23:33:08 +01:00
parent 71d22ab6b0
commit 85d238dfda
21202 changed files with 5499099 additions and 0 deletions

View File

@ -0,0 +1,29 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#.rst:
# IntegrityPlatformGraphics
# ---------
find_package_handle_standard_args(IntegrityPlatformGraphics
FOUND_VAR
IntegrityPlatformGraphics_FOUND
REQUIRED_VARS
IntegrityPlatformGraphics_LIBRARY
IntegrityPlatformGraphics_INCLUDE_DIR
)
if(IntegrityPlatformGraphics_FOUND
AND NOT TARGET IntegrityPlatformGraphics::IntegrityPlatformGraphics)
add_library(IntegrityPlatformGraphics::IntegrityPlatformGraphics STATIC IMPORTED)
set_target_properties(IntegrityPlatformGraphics::IntegrityPlatformGraphics PROPERTIES
IMPORTED_LOCATION "${IntegrityPlatformGraphics_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${IntegrityPlatformGraphics_INCLUDE_DIR}"
)
target_link_libraries(IntegrityPlatformGraphics::IntegrityPlatformGraphics
INTERFACE ${IntegrityPlatformGraphics_LIBRARIES_PACK})
endif()
mark_as_advanced(IntegrityPlatformGraphics_LIBRARY)
# compatibility variables
set(IntegrityPlatformGraphics_LIBRARIES ${IntegrityPlatformGraphics_LIBRARY})

View File

@ -0,0 +1,11 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# Custom platform module file for INTEGRITY.
#
# UNIX must be set here, because this variable is cleared after the toolchain file is loaded.
#
# Once the lowest CMake version we support ships an Integrity platform module,
# we can remove this file.
set(UNIX 1)