2020-05-01 11:22:26 +02:00
|
|
|
config BR2_PACKAGE_PISTACHE
|
|
|
|
bool "pistache"
|
2022-03-14 19:13:47 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17, std::optional
|
2020-05-01 11:22:26 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2022-01-28 12:05:42 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
|
2022-08-04 22:35:53 +02:00
|
|
|
select BR2_PACKAGE_RAPIDJSON
|
2020-05-01 11:22:26 +02:00
|
|
|
help
|
|
|
|
Pistache is a modern and elegant HTTP and REST framework
|
2022-03-14 19:13:47 +01:00
|
|
|
for C++. It is entirely written in pure C++17 and provides
|
2020-05-01 11:22:26 +02:00
|
|
|
a clear and pleasant API.
|
|
|
|
|
|
|
|
https://github.com/oktal/pistache
|
|
|
|
|
2022-08-04 22:35:54 +02:00
|
|
|
comment "pistache needs a toolchain w/ C++, gcc >= 7, threads, wchar, not binutils bug 27597"
|
2020-05-01 11:22:26 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
2022-03-14 19:13:47 +01:00
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
2022-01-28 12:05:42 +01:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_USE_WCHAR || \
|
|
|
|
BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
|