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