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