xref: /OK3568_Linux_fs/buildroot/package/let-me-create/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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