The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
Readme says minimum CMake version 3.7 but the cpprestsdk-config.cmake uses find_dependency macro with COMPONENTS arguments for Boost which is only supported from 3.9:
"The CMakeFindDependencyMacro module find_dependency macro now forwards all arguments to the underlying find_package() call. Existing uses will continue to function as before, but callers can now access the full suite of arguments that find_package accepts."
Readme says minimum CMake version 3.7 but the cpprestsdk-config.cmake uses find_dependency macro with COMPONENTS arguments for Boost which is only supported from 3.9:
"The CMakeFindDependencyMacro module find_dependency macro now forwards all arguments to the underlying find_package() call. Existing uses will continue to function as before, but callers can now access the full suite of arguments that find_package accepts."