7 lines
175 B
CMake
7 lines
175 B
CMake
find_package(Catch2 3 REQUIRED)
|
|
|
|
add_executable(tests test.cpp)
|
|
|
|
target_include_directories(tests PRIVATE ../Src)
|
|
|
|
target_link_libraries(tests PRIVATE Catch2::Catch2WithMain)
|