mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 08:14:09 -09:00
For release notes, see: https://github.com/pistacheio/pistache/releases Removed patches which are included in this release. Rapidjson was converted into an optional dependency:52abf5a86bRemoved configure option PISTACHE_ENABLE_NETWORK_TESTS:7d71e3b99fThis commit also updates the _SITE and package homepage URL. The old URL: https://github.com/oktal/pistache now redirects to: https://github.com/pistacheio/pistache Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Julien: - update _SITE and homepage - add link to release notes ] Signed-off-by: Julien Olivain <ju.o@free.fr>
19 lines
622 B
Plaintext
19 lines
622 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_NPTL
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
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/pistacheio/pistache
|
|
|
|
comment "pistache needs a toolchain w/ C++, gcc >= 7, NPTL, wchar"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
|
|
!BR2_USE_WCHAR
|