diff options
Diffstat (limited to 'samples/echobot-conan/CMakeLists.txt')
-rw-r--r-- | samples/echobot-conan/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/samples/echobot-conan/CMakeLists.txt b/samples/echobot-conan/CMakeLists.txt new file mode 100644 index 0000000..24d5422 --- /dev/null +++ b/samples/echobot-conan/CMakeLists.txt @@ -0,0 +1,9 @@ +project(PackageTest CXX) +cmake_minimum_required(VERSION 2.8.4) +set(CMAKE_CXX_STANDARD 11) + +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() + +add_executable(example example.cpp) +target_link_libraries(example ${CONAN_LIBS}) |