skullc-peripherals/Tests/CMakeLists.txt

20 lines
324 B
CMake

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