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