mirror of
https://github.com/wassname/conan-packages.git
synced 2026-06-27 16:15:02 +08:00
16 lines
462 B
CMake
16 lines
462 B
CMake
project(PackageTest CXX)
|
|
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup()
|
|
|
|
find_package(Boost REQUIRED COMPONENTS io system)
|
|
add_executable(example example.cpp)
|
|
target_link_libraries(example ${Boost_LIBRARIES})
|
|
|
|
# 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)
|