aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/catch2/.conan/test_package/CMakeLists.txt
blob: f067457f7211a1335104e08c0dbf8077b020c384 (plain) (blame)
1
2
3
4
5
6
7
8
cmake_minimum_required(VERSION 3.16)
project(PackageTest CXX)

find_package(Catch2 CONFIG REQUIRED)

add_executable(test_package test_package.cpp)
target_link_libraries(test_package Catch2::Catch2WithMain)
target_compile_features(test_package PRIVATE cxx_std_14)