microsoft / cpprestsdk

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.
Other
8.01k stars 1.66k forks source link

Readme issue - CMake version #593

Open garethsb opened 7 years ago

garethsb commented 7 years ago

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."

garethsb commented 6 years ago

fc1f692dbeb639c5eff8f31292dc5825f26c787c suggests requirement for 3.9 was not intentional...