1234567891011121314151617 |
- 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
|