mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
The principle component of this is the new volk meta-loader which is required for more recent versions of vulkan-tools. There does seem to be a little confusion with github Releases lagging behind tagged versions of the sdk. I've gone for the latest SDK version to stay as closely aligned to the rest of the system as I can. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> [Julien: remove _SOURCE to fix a check-package warning] Signed-off-by: Julien Olivain <ju.o@free.fr>
18 lines
483 B
Makefile
18 lines
483 B
Makefile
################################################################################
|
|
#
|
|
# vulkan-sdk
|
|
#
|
|
################################################################################
|
|
|
|
VULKAN_SDK_VERSION = 1.4.313.0
|
|
VULKAN_SDK_SITE = https://github.com/zeux/volk/archive/refs/tags
|
|
VULKAN_SDK_LICENSE = MIT
|
|
VULKAN_SDK_LICENSE_FILES = LICENSE.md
|
|
VULKAN_SDK_INSTALL_STAGING = YES
|
|
|
|
VULKAN_SDK_DEPENDENCIES = vulkan-headers
|
|
|
|
VULKAN_SDK_CONF_OPTS += -DVOLK_INSTALL=ON
|
|
|
|
$(eval $(cmake-package))
|