json-for-modern-cpp: new package
authorAdam Duskett <aduskett@gmail.com>
Sat, 30 Dec 2017 19:24:37 +0000 (14:24 -0500)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 30 Dec 2017 21:21:53 +0000 (22:21 +0100)
commit8b0a90d4f13e14495d7e9670ed661d430273dff7
tree289aaa4f6c244511fcd54c954bfd794f4df5bb82
parent82eec03c592497068fb6b26d01371a353a74ec6b
json-for-modern-cpp: new package

A json library that aims to make json feel like a first class data
type using C++11, json for modern c++ is a easy to use, flexible,
modern json library.

Design goals include:

- Intuitive syntax. In languages such as Python, JSON feels like a
  first class data type. All the operator magic of modern C++ is used
  to achieve the same feeling in c++.

- Trivial integration. The whole code consists of a single header file
  json.hpp. That's it. No library, no subproject, no dependencies, no
  complex build system. The class is written in vanilla C++11.  All in
  all, everything should require no adjustment of compiler flags or
  project settings.

- Serious testing. The class is heavily unit-tested and covers 100% of
  the code, including all exceptional behavior. Furthermore, it is
  checked with Valgrind that there are no memory leaks. To maintain
  high quality, the project is following the Core Infrastructure
  Initiative (CII) best practices.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
[Thomas:
 - use "json-for-modern-cpp" everywhere as the name of the package
 - add <pkg>_INSTALL_TARGET = NO since it's a header only library]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
DEVELOPERS
package/Config.in
package/json-for-modern-cpp/Config.in [new file with mode: 0644]
package/json-for-modern-cpp/json-for-modern-cpp.hash [new file with mode: 0644]
package/json-for-modern-cpp/json-for-modern-cpp.mk [new file with mode: 0644]