forked from Research/WhisperCom
Dominik Meyer
cc002ebfbb
git-subtree-dir: libs/json git-subtree-split: f42a74b8f53cc308647123d49d33d1c8122e3f42
10 lines
254 B
CMake
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})
|