2f32185679
While upstream pistache has not yet released a stable 'tag' a lot has changed since June 2020: * project has moved to meson build system, cmake builds do not install headers. * patches in buildroot are no longer required * project-implemented Pistache::Optional was replaced by use of std::optional. This is only available in C++17 * dependency to rapidjson has been introduced Signed-off-by: Thomas Ruschival <thomas@ruschival.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
846 B
Plaintext
24 lines
846 B
Plaintext
config BR2_PACKAGE_PISTACHE
|
|
bool "pistache"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17, std::optional
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_PACKAGE_RAPIDJSON
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC
|
|
depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
|
|
help
|
|
Pistache is a modern and elegant HTTP and REST framework
|
|
for C++. It is entirely written in pure C++17 and provides
|
|
a clear and pleasant API.
|
|
|
|
https://github.com/oktal/pistache
|
|
|
|
comment "pistache needs a glibc toolchain w/ C++, gcc >= 7, threads, wchar, not binutils bug 27597"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR || \
|
|
BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
|