admin 管理员组

文章数量: 1184232

步骤 1: 下载 vcpkg 

D:\tools>git clone https://github/Microsoft/vcpkg.git


步骤 2: 运行 bootstrap-vcpkg.bat 脚本生成 vcpkg.exe 

.\vcpkg\bootstrap-vcpkg.bat

步骤 3:使用 vcpkg.exe 安装 libcurl 
 
D:\tools\vcpkg>vcpkg.exe  install curl:x64-windows

这样 D:\tools\curl-8.5.0_4-win64-mingw 下的文件及目录如下:


步骤4:设置好文件包含路径为 D:\tools\curl-8.5.0_4-win64-mingw\include,这里以code blocks 20.03为例:

步骤5:设置好共享库 libcurl-x64.dll 的路径,这里以code blocks 20.03为例:

步骤6:编写好 libcurl 的应用程序:

#include <stdio.h>

#include <c

本文标签: Windows libcurl