From 80004d87b1b81459fde3aec41eb4b2ccc8cf86c3 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Fri, 18 Feb 2022 10:16:45 -0700 Subject: [PATCH] Build sf::Transformable tests Transformable.cpp was originally compiled when I first submitted PR #1973. While that PR was in review, #2012 got merged which changed how tests are compiled. These two PR were in conflict so when I went to resolve conflicts on #1973, I accidentaly removed the line which added Transformable.cpp to the build. Because not compiling this file caused no build breaks, nobody noticed until after #1973 got merged. My bad, everybody. --- test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index a6335ed4..d8a5ba29 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -35,6 +35,7 @@ if(SFML_BUILD_GRAPHICS) Graphics/Color.cpp Graphics/Rect.cpp Graphics/Transform.cpp + Graphics/Transformable.cpp Graphics/Vertex.cpp ) sfml_add_test(test-sfml-graphics "${GRAPHICS_SRC}" SFML::Graphics)