2
0
mirror of https://github.com/boostorg/json.git synced 2026-01-24 05:52:17 +00:00
Files
json/test/cmake-subdir/main.cpp
Dmitry Arkhipov 1eb855b470 fix build as CMake subdirectory
Also add tests for different CMake use cases
2024-01-01 23:49:29 +03:00

9 lines
110 B
C++

#include <boost/json.hpp>
#include <iostream>
int main()
{
std::cout << boost::json::value() << '\n';
}