Hi,
I am trying to build the example from examples/peerconnection/client in a new build environment and I am having some issues with finding the header files.
In conductor.cc line #19 includes base/json.h In that file, line #17 to #21 is the following:
#if !defined(WEBRTC_EXTERNAL_JSON)
#include "json/json.h"
#else
#include "third_party/jsoncpp/json.h"
#endif
From the comment on line #29 it appears that there is an option as to which json library to use, either jsoncpp or one defined in "json/json.h" However, the only json.h I can find (other than the main one under base) is under jsoncpp at: /src/third_party/jsoncpp/source/include/json/json.h
Is the option for "json/json.h really non-existent and the only json library available to use is the one from jsoncpp?
Thanks,
-Andres