1config BR2_PACKAGE_VULKAN_TOOLS
2	bool "vulkan-tools"
3	depends on BR2_INSTALL_LIBSTDCPP # vulkan-loader
4	depends on !BR2_STATIC_LIBS # vullan-loader
5	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
6	depends on BR2_TOOLCHAIN_HAS_THREADS # vulkan-loader
7	select BR2_PACKAGE_VULKAN_HEADERS
8	select BR2_PACKAGE_VULKAN_LOADER
9
10	help
11	  The Khronos official Vulkan Tools and Utilities.
12
13	  https://github.com/KhronosGroup/Vulkan-Tools
14
15comment "vulkan-tools needs a toolchain w/ C++, dynamic library, threads, gcc >= 4.9"
16	depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
17		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
18