mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 13:39:49 +02:00
https://github.com/KhronosGroup/Vulkan-Utility-Libraries/compare/vulkan-sdk-1.3.280.0...vulkan-sdk-1.3.283 (From OE-Core rev: 1478fc03f302e650aa5363710fd209b8e6f61c07) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
BlitzBasic
34 lines
1.1 KiB
BlitzBasic
SUMMARY = "Vulkan Utility Libraries"
|
|
DESCRIPTION = "Common libraries created to share code across various \
|
|
Vulkan repositories, solving long standing issues for Vulkan SDK \
|
|
developers and users."
|
|
HOMEPAGE = "https://www.khronos.org/vulkan/"
|
|
BUGTRACKER = "https://github.com/KhronosGroup/Vulkan-Utility-Libraries"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=4ca2d6799091aaa98a8520f1b793939b"
|
|
|
|
SRC_URI = "git://github.com/KhronosGroup/Vulkan-Utility-Libraries.git;branch=main;protocol=https"
|
|
SRCREV = "ad7f699a7b2b5deb66eb3de19f24aa33597ed65b"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
REQUIRED_DISTRO_FEATURES = "vulkan"
|
|
|
|
DEPENDS = "vulkan-headers"
|
|
|
|
EXTRA_OECMAKE = "\
|
|
-DBUILD_TESTS=OFF \
|
|
"
|
|
|
|
inherit cmake features_check pkgconfig
|
|
|
|
# These recipes need to be updated in lockstep with each other:
|
|
# glslang, vulkan-headers, vulkan-loader, vulkan-tools,
|
|
# vulkan-validation-layers, spirv-headers, spirv-tools,
|
|
# vulkan-utility-libraries, vulkan-volk.
|
|
# The tags versions should always be sdk-x.y.z, as this is what
|
|
# upstream considers a release.
|
|
UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)"
|