Config.in 1006 B

123456789101112131415161718192021222324
  1. comment "cegui needs a toolchain w/ C++, threads, dynamic library, wchar, gcc >= 5"
  2. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP \
  3. || BR2_STATIC_LIBS || !BR2_USE_WCHAR \
  4. || !BR2_TOOLCHAIN_GCC_AT_LEAST_5
  5. config BR2_PACKAGE_CEGUI
  6. bool "cegui"
  7. depends on BR2_INSTALL_LIBSTDCPP
  8. depends on !BR2_STATIC_LIBS
  9. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11 PR59987
  10. depends on BR2_TOOLCHAIN_HAS_THREADS
  11. depends on BR2_USE_WCHAR
  12. select BR2_PACKAGE_GLM
  13. select BR2_PACKAGE_LIBGLFW if BR2_PACKAGE_HAS_LIBGL # SampleBrowser dependency
  14. select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
  15. help
  16. Crazy Eddie's GUI System is a free library providing windowing
  17. and widgets for graphics APIs / engines where such
  18. functionality is not natively available, or severely lacking.
  19. The library is object orientated, written in C++, and targeted
  20. at games developers who should be spending their time creating
  21. great games, not building GUI sub-systems!
  22. http://www.cegui.org.uk/