📝 add documentation for integration via vcpkg

This commit is contained in:
Niels Lohmann
2021-08-18 20:49:13 +02:00
parent abd829e6c6
commit 23e3b622aa
4 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
#include <nlohmann/json.hpp>
#include <iostream>
using json = nlohmann::json;
int main()
{
std::cout << json::meta() << std::endl;
}