我要包括的库是jsoncpp。我对此有严重的麻烦。我为此库使用了home-brew安装程序,即brew install jsoncpp(brew install是linux sudo-apt get的unix版本)。通常,homebrew将东西安装到我的路径上,因此我可以使用它。我要离开这里的example

#include <json/json.h>

返回10: fatal error: 'json/value.h' file not found错误。

我正在使用cmake,因为CLion会自动设置它。现在这是非常基本的:
#CMakeLists.txt
cmake_minimum_required(VERSION 3.13)
project(Read_JSON)

set(CMAKE_CXX_STANDARD 17)

add_executable(Read_JSON main.cpp)

但是,由于某种原因,找不到jsoncpp。如何在我的项目中包含此库?

最佳答案

您可以在CMake中使用FetchContent功能。
可以通过GitHub上的git仓库获得Jsoncpp

这是我用googletest制作的示例:
https://github.com/adamvm/hello/blob/master/CMakeLists.txt

您只需要替换适当的地址和名称

10-08 08:21