Remove redundant link library

Clang was warning about this

  ld: warning: ignoring duplicate libraries: 'lib/libsfml-system-s-d.a'
This commit is contained in:
Chris Thrasher 2023-10-08 23:13:48 -06:00 committed by Lukas Dürrenberger
parent 6fa330d077
commit 2cbcd60a45

View File

@ -51,7 +51,7 @@ set(SYSTEM_SRC
System/Vector2.test.cpp
System/Vector3.test.cpp
)
sfml_add_test(test-sfml-system "${SYSTEM_SRC}" SFML::System)
sfml_add_test(test-sfml-system "${SYSTEM_SRC}" "")
target_compile_definitions(test-sfml-system PRIVATE
EXPECTED_SFML_VERSION_MAJOR=${SFML_VERSION_MAJOR}
EXPECTED_SFML_VERSION_MINOR=${SFML_VERSION_MINOR}