mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 06:49:39 +01:00
Upgrade all Vulkan-related packages together in a single cmmit. License-Update: copyright years update. (From OE-Core rev: 647e592c2d091da5b92e9aef80707ff0bd275dc9) Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.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=vulkan-sdk-1.4.309;protocol=https"
|
|
SRCREV = "897ee4d90309f5b4f8e254472863d0489e6439d2"
|
|
|
|
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+)+)"
|