Config.in 768 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_KMSXX
  2. bool "kms++"
  3. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  4. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm
  7. select BR2_PACKAGE_LIBDRM
  8. help
  9. libkms++ is a C++11 library for kernel mode setting.
  10. Also included are simple test tools for KMS.
  11. https://github.com/tomba/kmsxx
  12. if BR2_PACKAGE_KMSXX
  13. config BR2_PACKAGE_KMSXX_INSTALL_TESTS
  14. bool "Install test programs"
  15. help
  16. This option allows to install the kmsxx test programs.
  17. endif
  18. comment "kms++ needs a toolchain w/ threads, C++, gcc >= 4.8, headers >= 3.8"
  19. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
  20. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8