Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_LIBCPPRESTSDK
  2. bool "libcpprestsdk"
  3. depends on BR2_ENABLE_LOCALE
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_USE_WCHAR # boost
  6. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  7. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  8. select BR2_PACKAGE_BOOST
  9. select BR2_PACKAGE_BOOST_ATOMIC
  10. select BR2_PACKAGE_BOOST_CHRONO
  11. select BR2_PACKAGE_BOOST_DATE_TIME
  12. select BR2_PACKAGE_BOOST_FILESYSTEM
  13. select BR2_PACKAGE_BOOST_RANDOM
  14. select BR2_PACKAGE_BOOST_REGEX
  15. select BR2_PACKAGE_BOOST_THREAD
  16. select BR2_PACKAGE_OPENSSL
  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/ NPTL, C++, wchar, locale"
  24. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
  25. !BR2_INSTALL_LIBSTDCPP || \
  26. !BR2_USE_WCHAR || !BR2_ENABLE_LOCALE
  27. comment "libcpprestsdk needs exception_ptr"
  28. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735