12 lines
174 B
CMake
12 lines
174 B
CMake
add_executable(Protocol_tests
|
|
test_protocol.cxx
|
|
)
|
|
|
|
target_link_libraries(Protocol_tests
|
|
PRIVATE
|
|
Protocol
|
|
Catch2::Catch2WithMain
|
|
)
|
|
|
|
catch_discover_tests(Protocol_tests)
|