0

I am using Azure SDK. In the SDK I have included cJSON functionalities, I know I need to link cJSON.h to my code. But in azure makefile, I am finding it difficult. Do help in linking the cJSON header file.

Yogesh
  • 273
  • 1
  • 3
  • 10

1 Answers1

1

You could add the json library to the makefile to solve this problem.

Add

-ljson   \

to the linkflags in the makefile in the app directory and then was able to successfully compile.

Here is the similar thread.

Joey Cai
  • 18,968
  • 1
  • 20
  • 30