12 lines
154 B
CMake
12 lines
154 B
CMake
add_executable(Stun_tests
|
|
test_stun.cxx
|
|
)
|
|
|
|
target_link_libraries(Stun_tests
|
|
PRIVATE
|
|
Stun
|
|
Catch2::Catch2WithMain
|
|
)
|
|
|
|
catch_discover_tests(Stun_tests)
|