d5a7f213ab
Use $(VULKAN_HEADERS_VERSION) for VULKAN_TOOLS_VERSION as the vulkan packages need to all be the same version. Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
640 B
Plaintext
18 lines
640 B
Plaintext
config BR2_PACKAGE_VULKAN_TOOLS
|
|
bool "vulkan-tools"
|
|
depends on BR2_INSTALL_LIBSTDCPP # vulkan-loader
|
|
depends on !BR2_STATIC_LIBS # vullan-loader
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # vulkan-loader
|
|
select BR2_PACKAGE_VULKAN_HEADERS
|
|
select BR2_PACKAGE_VULKAN_LOADER
|
|
|
|
help
|
|
The Khronos official Vulkan Tools and Utilities.
|
|
|
|
https://github.com/KhronosGroup/Vulkan-Tools
|
|
|
|
comment "vulkan-tools needs a toolchain w/ C++, dynamic library, threads, gcc >= 4.9"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|