Windows上配置C++ REST SDK详细过程

本文开发环境为Visual Studio 2013和Visual Studio 2019。

文中用到的vcpkg资源包可以用git下载,CSDN上的链接为:https://download.csdn.net/download/youyicc/12396835
文中用的编译时的资源CSDN上的链接为:https://download.csdn.net/download/youyicc/12396858

使用vcpkg安装C++ REST SDK,这一步需要Git,如果没有Git的,需要先下载Git,并配置好Git,这里不详细描述Git安装配置过程。

第一步,在Git Bash中输入下面命令,下载vcpkg:

git clone https://github.com/Microsoft/vcpkg.git

下载完成后的vcpkg目录如下所示:
Windows上配置C++ REST SDK详细过程_第1张图片
在这里有多种方式编译vcpkg,本文介绍两种方法:
①在Git Bash中输入命令:
powershell -exec bypass scripts/bootstrap.ps1
这种方法是直接调用Windows自带的powershell.exe编译。
②直接双击运行bootstrap-vcpkg.bat
运行完成后,

你可能感兴趣的:(Restful服务器开发,Restful)