标签: azure azure-sdk cjson
我正在使用Azure SDK。在SDK中我包含了cJSON功能,我知道我需要将cJSON.h链接到我的代码。但是在天蓝色的makefile中,我发现它很难。帮助链接cJSON头文件。
答案 0 :(得分:1)
您可以将json库添加到makefile 以解决此问题。
添加
-ljson \
到app目录中makefile中的linkflags然后能够成功编译。
以下是类似的thread。