Config.in 640 B

1234567891011121314151617
  1. config 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. help
  10. The Khronos official Vulkan Tools and Utilities.
  11. https://github.com/KhronosGroup/Vulkan-Tools
  12. comment "vulkan-tools needs a toolchain w/ C++, dynamic library, threads, gcc >= 4.9"
  13. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
  14. !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9