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.

10 lines
216B

  1. cmake_minimum_required(VERSION 3.11)
  2. project(PackageTest CXX)
  3. include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
  4. conan_basic_setup()
  5. add_executable(example example.cpp)
  6. target_link_libraries(example ${CONAN_LIBS})