search for: jsoncpp

Displaying 3 results from an estimated 3 matches for "jsoncpp".

Did you mean: isocpp
2020 Aug 18
4
Adopting a third-party JSON library
...erformance and API ergonomics. - Likely compile times regression as many JSON libs are header-only. - Risk of introducing bugs and breakages across LLVM. As far as I can tell, these are the most popular C++ JSON libs: * https://github.com/nlohmann/json * https://github.com/open-source-parsers/jsoncpp * https://github.com/Tencent/rapidjson I'm trying to understand if this is something I should work on and whether or not it would benefit the project. Filippo Costa
2015 Nov 06
2
c++ Development question
Hello Centos user. Im learning about c/c++ , so far every thing works great. The problem begins when I try to install a new library or a third party api. For example now I need to install the jsoncpp implementation in my centos box but I have no idea how to do it. I realized that my knolowge about those things is very poor. I would like to ask you for some documentation about libraries directories layout regarding c/c++ programing. Im not interested in the languaje it self but how to prepare...
2017 Oct 27
10
RFC: Adding a JSON library to LLVM Support
We don't have a dedicated JSON library in the LLVM tree, I'd like to add one. The pressing need is for clangd, but we have other tools that read/write JSON too. I'm proposing we write a new one, rather than importing a third-party library (licensing/integration reasons), on or extending YamlParser/YamlIO (usability/flexibility). I lean towards a design that parses a full DOM at once,