Config.in 786 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_CAIROMM1_14
  2. bool "cairomm (1.14.x)"
  3. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  5. depends on BR2_USE_WCHAR # libglib2
  6. depends on BR2_USE_MMU # libglib2
  7. depends on BR2_INSTALL_LIBSTDCPP
  8. select BR2_PACKAGE_CAIRO
  9. select BR2_PACKAGE_LIBGLIB2
  10. select BR2_PACKAGE_LIBSIGC2
  11. help
  12. The cairomm package is a set of C++ bindings for Cairo.
  13. This is the last version before the API and ABI change
  14. introduced in 1.16.0 which requires C++17.
  15. https://www.cairographics.org/cairomm/
  16. comment "cairomm (1.14.x) needs a toolchain w/ C++, wchar, threads, gcc >= 4.9"
  17. depends on BR2_USE_MMU
  18. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
  19. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP