7 lines
164 B
CMake
7 lines
164 B
CMake
find_package(Catch2 3 REQUIRED)
|
|
|
|
add_executable(test test.cpp)
|
|
|
|
target_link_libraries(test PRIVATE Catch2::Catch2WithMain)
|
|
|
|
target_link_libraries(test PRIVATE src)
|