1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-06 06:42:33 +03:00
Files
json/doc/mkdocs/docs/integration/conan/CMakeLists.txt
Niels Lohmann a8f0cd15df 📝 add mkdocs
2020-05-24 13:03:04 +02:00

10 lines
254 B
CMake

project(json_example)
cmake_minimum_required(VERSION 2.8.12)
add_definitions("-std=c++11")
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
add_executable(json_example example.cpp)
target_link_libraries(json_example ${CONAN_LIBS})