使用 Vcpkg 安装 nlohmann/json 是一个简单且高效的方法,因为它会自动为你处理库的安装和配置。以下是详细的步骤:
安装 Vcpkg
克隆 Vcpkg 仓库:
打开命令提示符(CMD)或 PowerShell,并运行以下命令来克隆 Vcpkg 仓库:
sh
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
安装 Vcpkg:
在 Vcpkg 目录下,执行以下命令来安装 Vcpkg:
对于 Windows(CMD):
sh
.\bootstrap-vcpkg.bat
对于 Windows(PowerShell):
sh
.\bootstrap-vcpkg.ps1
集成 Vcpkg:
为了让 Vcpkg 能够与 Visual Studio 集成,你需要执行以下命令:
对于 Windows(CMD):
sh
.\vcpkg integrate install
对于 Windows(PowerShell):
sh
.\vcpkg integrate install
安装 nlohmann/json
安装 nlohmann/json:
在 Vcpkg 目录下,执行以下命令来安装 nlohmann/json:
sh
.\vcpkg install nlohmann-json
安装完成后的步骤:
如果你已经打开了 Visual Studio,你可能需要重启它以确保 Vcpkg 的集成生效。
在你的项目中,你不需要再手动设置包含目录,因为 Vcpkg 会自动为你处理这些配置。
在项目中使用 nlohmann/json
包含头文件:
在你的 C++ 源文件中,包含 nlohmann/json 的头文件:
cpp
#include <nlohmann/json.hpp>
使用库:
现在你可以在你的项目中使用 nlohmann/json 库了。例如:
cpp
#include <iostream>
#include <nlohmann/json.hpp>
int main() {
nlohmann::json j;
j["pi"] = 3.141;
j["happy"] = true;
j["name"] = "Niels";
j["nothing"] = nullptr;
std::cout << j.dump(4) << std::endl;
}
标签:nlohmann,json,sh,Vcpkg,vcpkg,安装
From: https://www.cnblogs.com/kenall/p/18469767