skullc-peripherals/Tests/CMakeLists.txt
Erki ed1509809e
All checks were successful
continuous-integration/drone/push Build is passing
Remake folder structure, add messaging library start
2021-03-27 16:51:04 +02:00

18 lines
283 B
CMake

cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
find_package(Catch2 REQUIRED)
add_executable(tests
main.cpp
ringbuffer.cpp
)
target_link_libraries(tests
PUBLIC
skullc::utility
Catch2::Catch2
)
include(CTest)
include(Catch)
catch_discover_tests(tests)