From 1554251f97c20bf30a0902f488a3da6c23d4771a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 11 Aug 2021 22:57:36 +0200 Subject: [PATCH] Fix typo in docs/cmake-integration.md --- docs/cmake-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmake-integration.md b/docs/cmake-integration.md index e872dcee..d8d08495 100644 --- a/docs/cmake-integration.md +++ b/docs/cmake-integration.md @@ -34,7 +34,7 @@ target_link_libraries(tests PRIVATE Catch2::Catch2WithMain) # These tests need their own main add_executable(custom-main-tests test.cpp test-main.cpp) -target_link_libraries(custom-main-tests PRIVATE Catch2::Catch2WithMain) +target_link_libraries(custom-main-tests PRIVATE Catch2::Catch2) ``` These targets are also provided when Catch2 is used as a subdirectory.