Merge pull request #2786 from catchorg/redundant_link_libraries

Fix clang warning about redundant link libraries
This commit is contained in:
Martin Hořeňovský 2023-12-29 21:31:03 +01:00 committed by GitHub
commit b7b71ffd3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ set(ALL_EXAMPLE_TARGETS
)
foreach( name ${ALL_EXAMPLE_TARGETS} )
target_link_libraries( ${name} Catch2 Catch2WithMain )
target_link_libraries( ${name} Catch2WithMain )
endforeach()