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