quick guide to install vcpkg
Auto Linked Library for C++ Visual Studio
1. Install, vcpkg Open Github cmd
> git clone https://github.com/Microsoft/vcpkg
> cd vcpkg
2. Then, to hook up user-wide integration(让以后的library都可以通过vcpkg安装), run (note: requires admin on first use), Use PowerShell
PS> .\vcpkg integrate install
3. Install library via vcpkg
> cd vcpkg
PS> .\vcpkg install cpprestsdk cpprestsdk:x64-windows
PS> .\vcpkg install boost:x86-windows