Linux常用库的编译
时间:2020-05-22 11:10:49
收藏:0
阅读:58
1. c++ json解析库(https://github.com/nlohmann/json.git)
下载地址:https://github.com/nlohmann/json/releases
mkdir nlohmann_json && cd nlohmann_json && wget https://github.com/nlohmann/json/archive/v3.7.3.tar.gz \ && tar -xzvf v3.7.3.tar.gz && cd json-3.7.3 && mkdir build && cd build && cmake .. && make && make install && cd .. && rm -rf ./nlohmann_json
原文:https://www.cnblogs.com/jobgeo/p/12935942.html
评论(0)