cmake_minimum_required(VERSION 3.1.2) project(PackageTest CXX) include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) conan_basic_setup() if(${CMAKE_EXPORT_NO_PACKAGE_REGISTRY}) endif() 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)