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