6 lines
142 B
CMake
6 lines
142 B
CMake
|
find_package(Catch2 REQUIRED)
|
||
|
add_executable(catchtest all_includes.C)
|
||
|
target_link_libraries(catchtest PRIVATE Catch2::Catch2WithMain qpms)
|
||
|
|
||
|
|