mirror of
https://github.com/google/benchmark.git
synced 2024-11-28 15:34:33 +00:00
11 lines
269 B
CMake
11 lines
269 B
CMake
cmake_minimum_required(VERSION 2.8.11)
|
|
project(test_package)
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE TRUE)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup()
|
|
|
|
add_executable(${PROJECT_NAME} test_package.cpp)
|
|
target_link_libraries(${PROJECT_NAME} ${CONAN_LIBS})
|