1config BR2_PACKAGE_VULKAN_LOADER
2	bool "vulkan-loader"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on !BR2_STATIC_LIBS # dlfcn.h
5	depends on BR2_TOOLCHAIN_HAS_THREADS
6	select BR2_PACKAGE_VULKAN_HEADERS
7	help
8	  The Khronos official Vulkan ICD desktop loader.
9
10	  https://github.com/KhronosGroup/Vulkan-Loader
11
12comment "vulkan-loader needs a toolchain w/ C++, dynamic library, threads"
13	depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
14		!BR2_TOOLCHAIN_HAS_THREADS
15