Blog/Tests/CMakeLists.txt

8 lines
175 B
Text
Raw Normal View History

find_package(Catch2 3 REQUIRED)
add_executable(tests test.cpp)
target_include_directories(tests PRIVATE ../Src)
target_link_libraries(tests PRIVATE Catch2::Catch2WithMain)