Sign in
flutter
/
third_party
/
json
/
refs/heads/gh-pages
/
.
/
integration
/
conan
/
CMakeLists.txt
blob: e3fda5b9adb536055f6390618d39dd2e74cfaed2 [
file
] [
edit
]
cmake_minimum_required(VERSION 3.15)
project(json_example)
find_package(nlohmann_json REQUIRED)
add_executable(json_example example.cpp)
target_link_libraries(json_example PRIVATE nlohmann_json::nlohmann_json)