]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/libcpprestsdk/Config.in
lrzsz: install symlinks for XMODEM and YMODEM
[coffee/buildroot.git] / package / libcpprestsdk / Config.in
1 config BR2_PACKAGE_LIBCPPRESTSDK
2         bool "libcpprestsdk"
3         depends on BR2_INSTALL_LIBSTDCPP
4         depends on BR2_USE_WCHAR # boost
5         depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
6         depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
7         select BR2_PACKAGE_BOOST
8         select BR2_PACKAGE_BOOST_ATOMIC
9         select BR2_PACKAGE_BOOST_CHRONO
10         select BR2_PACKAGE_BOOST_DATE_TIME
11         select BR2_PACKAGE_BOOST_FILESYSTEM
12         select BR2_PACKAGE_BOOST_RANDOM
13         select BR2_PACKAGE_BOOST_REGEX
14         select BR2_PACKAGE_BOOST_THREAD
15         select BR2_PACKAGE_OPENSSL
16         select BR2_PACKAGE_ZLIB
17         help
18           The C++ REST SDK is a Microsoft project for cloud-based
19           client-server communication in native code using a modern
20           asynchronous C++ API design. This project aims to help C++
21           developers connect to and interact with services.
22
23           https://github.com/Microsoft/cpprestsdk
24
25 comment "libcpprestsdk needs a toolchain w/ NPTL, C++, wchar"
26         depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
27                 !BR2_INSTALL_LIBSTDCPP || \
28                 !BR2_USE_WCHAR
29
30 comment "libcpprestsdk needs exception_ptr"
31         depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735