Config.in 1.0 KB

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_LIBCPPRESTSDK
  2. bool "libcpprestsdk"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # boost
  5. depends on BR2_USE_WCHAR # boost
  6. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  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. https://github.com/Microsoft/cpprestsdk
  23. comment "libcpprestsdk needs a toolchain w/ C++, wchar, threads"
  24. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
  25. || !BR2_USE_WCHAR
  26. comment "libcpprestsdk needs exception_ptr"
  27. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735