You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
407 B
15 lines
407 B
cmake_minimum_required(VERSION 2.8.12)
|
|
project(PackageTest CXX)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup()
|
|
|
|
add_executable(example example.cpp)
|
|
target_link_libraries(example ${CONAN_LIBS})
|
|
|
|
# CTest is a testing tool that can be used to test your project.
|
|
# enable_testing()
|
|
# add_test(NAME example
|
|
# WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
|
# COMMAND example)
|