cJSON库的安装与使用

先安装Cmake

git clone https://github.com/DaveGamble/cJSON.git
cd cJSON/
mkdir build
cd build/
cmake ..
make
make install

执行完上述命令后,cJSON.h 头文件会安装在 /usr/local/include/cjson 目录下。libcjson.so 库文件会安装在 /usr/local/lib 目录下。还需要将/usr/local/lib目录添加到 /etc/ld.so.conf 文件中,然后执行 /sbin/ldconfig,否则程序在运行时会报 error while loading shared libraries: libcjson.so.1: cannot open shared object file: No such file or directory 错误。

使用 cJSON 库时,程序只需包含头文件。而在编译时,需要添加 -lcjson 选项。

借鉴
https://blog.csdn.net/woay2008/article/details/94367652

你可能感兴趣的:(C++)