xref: /OK3568_Linux_fs/buildroot/package/pistache/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_PISTACHE
2	bool "pistache"
3	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
4	depends on BR2_USE_WCHAR
5	depends on BR2_TOOLCHAIN_HAS_THREADS
6	depends on BR2_INSTALL_LIBSTDCPP
7	depends on !BR2_TOOLCHAIN_USES_UCLIBC
8	help
9	  Pistache is a modern and elegant HTTP and REST framework
10	  for C++. It is entirely written in pure C++14 and provides
11	  a clear and pleasant API.
12
13	  https://github.com/oktal/pistache
14
15comment "pistache needs a glibc toolchain w/ C++, gcc >= 4.9, threads, wchar"
16	depends on !BR2_INSTALL_LIBSTDCPP || \
17	BR2_TOOLCHAIN_USES_UCLIBC || \
18	!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
19	!BR2_TOOLCHAIN_HAS_THREADS || \
20	!BR2_USE_WCHAR
21