Files

37 lines
625 B
CMake
Raw Permalink Normal View History

2026-07-18 14:31:15 +02:00
project(tw_network_tests)
set(LIBS
tw::network
)
file(GLOB FILES
./*.cpp
./quicr/QuicrBasicTests.cpp
./quicr/QuicrEndpointTests.cpp
)
add_library(${PROJECT_NAME}_sources OBJECT ${FILES})
target_link_libraries(${PROJECT_NAME}_sources
Catch2::Catch2WithMain
${LIBS}
tl::expected
)
add_executable(${PROJECT_NAME})
target_link_libraries(${PROJECT_NAME}
PRIVATE
${LIBS}
${PROJECT_NAME}_sources
Catch2::Catch2WithMain
tl::expected
EnTT::EnTT
)
list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras)
include(CTest)
include(Catch)
catch_discover_tests(${PROJECT_NAME})