├── CMakeLists.txt ├── LICENSE ├── README.md ├── include └── nlohmann │ └── json-qt.hpp └── tests ├── CMakeLists.txt └── test.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpurgin/nlohmann_json_qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpurgin/nlohmann_json_qt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpurgin/nlohmann_json_qt/HEAD/README.md -------------------------------------------------------------------------------- /include/nlohmann/json-qt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpurgin/nlohmann_json_qt/HEAD/include/nlohmann/json-qt.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpurgin/nlohmann_json_qt/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpurgin/nlohmann_json_qt/HEAD/tests/test.cpp --------------------------------------------------------------------------------