mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
ac0a83a35d
- Apply new conventions introduced on Conan 1.8 - Removed outdated settings - Update license to follow SPDX format Closes #926 Closes #943
12 lines
353 B
CMake
12 lines
353 B
CMake
cmake_minimum_required(VERSION 3.2.0)
|
|
project(test_package CXX)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup(TARGETS)
|
|
|
|
find_package(Catch2 REQUIRED CONFIG)
|
|
|
|
add_executable(${PROJECT_NAME} test_package.cpp)
|
|
target_link_libraries(${PROJECT_NAME} CONAN_PKG::Catch2)
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 11)
|