mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 15:33:28 +08:00
014c47cfbf
restclient-cpp is a simple REST client library for C++ Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14 lines
427 B
Plaintext
14 lines
427 B
Plaintext
config BR2_PACKAGE_RESTCLIENT_CPP
|
|
bool "restclient-cpp"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
|
select BR2_PACKAGE_LIBCURL
|
|
help
|
|
restclient-cpp is a C++ client library for
|
|
making HTTP/REST requests
|
|
|
|
http://code.mrtazz.com/restclient-cpp/
|
|
|
|
comment "restclient-cpp needs a toolchain w/ C++, gcc >= 4.8"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|