I want to use (cJSON) library in my c++ code. How do I download and add this library to my CLion project in order to import it into my code like this
#include <cJSON.h>
This is my cMakeLists.txt
cmake_minimum_required(VERSION 3.16)
project(a_star_search)
set(CMAKE_CXX_STANDARD 14)
add_executable(a_star_search main.cpp)