diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 1b85127fb..b986e2481 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.14) -set(SRCROOT "${PROJECT_SOURCE_DIR}/test/src") +set(SRCROOT "${PROJECT_SOURCE_DIR}/test") include(FetchContent) FetchContent_Declare(Catch2 diff --git a/test/src/CatchMain.cpp b/test/CatchMain.cpp similarity index 100% rename from test/src/CatchMain.cpp rename to test/CatchMain.cpp diff --git a/test/src/Graphics/Rect.cpp b/test/Graphics/Rect.cpp similarity index 100% rename from test/src/Graphics/Rect.cpp rename to test/Graphics/Rect.cpp diff --git a/test/src/Network/Packet.cpp b/test/Network/Packet.cpp similarity index 100% rename from test/src/Network/Packet.cpp rename to test/Network/Packet.cpp diff --git a/test/src/System/Time.cpp b/test/System/Time.cpp similarity index 100% rename from test/src/System/Time.cpp rename to test/System/Time.cpp diff --git a/test/src/System/Vector2.cpp b/test/System/Vector2.cpp similarity index 100% rename from test/src/System/Vector2.cpp rename to test/System/Vector2.cpp diff --git a/test/src/System/Vector3.cpp b/test/System/Vector3.cpp similarity index 100% rename from test/src/System/Vector3.cpp rename to test/System/Vector3.cpp diff --git a/test/src/TestUtilities/GraphicsUtil.cpp b/test/TestUtilities/GraphicsUtil.cpp similarity index 100% rename from test/src/TestUtilities/GraphicsUtil.cpp rename to test/TestUtilities/GraphicsUtil.cpp diff --git a/test/src/TestUtilities/GraphicsUtil.hpp b/test/TestUtilities/GraphicsUtil.hpp similarity index 100% rename from test/src/TestUtilities/GraphicsUtil.hpp rename to test/TestUtilities/GraphicsUtil.hpp diff --git a/test/src/TestUtilities/SystemUtil.cpp b/test/TestUtilities/SystemUtil.cpp similarity index 100% rename from test/src/TestUtilities/SystemUtil.cpp rename to test/TestUtilities/SystemUtil.cpp diff --git a/test/src/TestUtilities/SystemUtil.hpp b/test/TestUtilities/SystemUtil.hpp similarity index 100% rename from test/src/TestUtilities/SystemUtil.hpp rename to test/TestUtilities/SystemUtil.hpp diff --git a/test/src/TestUtilities/WindowUtil.cpp b/test/TestUtilities/WindowUtil.cpp similarity index 100% rename from test/src/TestUtilities/WindowUtil.cpp rename to test/TestUtilities/WindowUtil.cpp diff --git a/test/src/TestUtilities/WindowUtil.hpp b/test/TestUtilities/WindowUtil.hpp similarity index 100% rename from test/src/TestUtilities/WindowUtil.hpp rename to test/TestUtilities/WindowUtil.hpp