mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-04 10:43:19 +00:00
9 lines
263 B
Text
9 lines
263 B
Text
|
cmake_minimum_required(VERSION 3.15)
|
||
|
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)
|