summaryrefslogtreecommitdiff
path: root/json4cpp/tests/cmake_import_minver/project/main.cpp
blob: 95b4e161bdbf16148e6a9f52a69f59e0e553723a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//     __ _____ _____ _____
//  __|  |   __|     |   | |  JSON for Modern C++ (supporting code)
// |  |  |__   |  |  | | | |  version 3.12.0
// |_____|_____|_____|_|___|  https://github.com/nlohmann/json
//
// SPDX-FileCopyrightText: 2013-2026 Niels Lohmann <https://nlohmann.me>
// SPDX-License-Identifier: MIT

#include <nlohmann/json.hpp>

int main()
{
    nlohmann::json j;

    return 0;
}