1comment "let-me-create needs a toolchain w/ C++, threads, dynamic library" 2 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \ 3 || BR2_STATIC_LIBS 4 5config BR2_PACKAGE_LET_ME_CREATE 6 bool "let-me-create" 7 # build issues in static libs configuration 8 # see https://github.com/CreatorDev/LetMeCreate/issues/28 9 depends on !BR2_STATIC_LIBS 10 depends on BR2_INSTALL_LIBSTDCPP 11 depends on BR2_TOOLCHAIN_HAS_THREADS 12 help 13 This library is collection of small wrappers for some 14 interfaces on the Creator Ci40 board. It aims at making 15 easier to develop on this platform. It also provides 16 wrappers for a few clicks. 17 18 https://github.com/CreatorDev/LetMeCreate 19 20if BR2_PACKAGE_LET_ME_CREATE 21 22config BR2_PACKAGE_LET_ME_CREATE_EXAMPLES 23 bool "Build and install examples" 24 help 25 Build and install examples 26 27endif 28