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