28 lines
829 B
Plaintext
28 lines
829 B
Plaintext
|
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
|