Fix clang warning about redundant link libraries

This commit is contained in:
Chris Thrasher 2023-12-28 16:27:51 -06:00
parent a9a94bec13
commit 048d7f7796
No known key found for this signature in database
GPG Key ID: 56FB686C9DFC8E2C

View File

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