json/test/bazel_dependency/main.cpp
2019-07-28 23:44:53 -04:00

13 lines
235 B
C++

/**
* We use quotes per the doc's recommendation:
* https://docs.bazel.build/versions/master/bazel-and-cpp.html#include-paths
*/
#include "nlohmann/json.hpp"
int main(int argc, char **argv)
{
nlohmann::json j;
return 0;
}