From ade9843dd8fc10acecddc5c19fe65968653f6125 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Thu, 23 Dec 2021 11:28:14 -0600 Subject: [PATCH] Collapse test/src directory --- test/CMakeLists.txt | 2 +- test/{src => }/CatchMain.cpp | 0 test/{src => }/Graphics/Rect.cpp | 0 test/{src => }/Network/Packet.cpp | 0 test/{src => }/System/Time.cpp | 0 test/{src => }/System/Vector2.cpp | 0 test/{src => }/System/Vector3.cpp | 0 test/{src => }/TestUtilities/GraphicsUtil.cpp | 0 test/{src => }/TestUtilities/GraphicsUtil.hpp | 0 test/{src => }/TestUtilities/SystemUtil.cpp | 0 test/{src => }/TestUtilities/SystemUtil.hpp | 0 test/{src => }/TestUtilities/WindowUtil.cpp | 0 test/{src => }/TestUtilities/WindowUtil.hpp | 0 13 files changed, 1 insertion(+), 1 deletion(-) rename test/{src => }/CatchMain.cpp (100%) rename test/{src => }/Graphics/Rect.cpp (100%) rename test/{src => }/Network/Packet.cpp (100%) rename test/{src => }/System/Time.cpp (100%) rename test/{src => }/System/Vector2.cpp (100%) rename test/{src => }/System/Vector3.cpp (100%) rename test/{src => }/TestUtilities/GraphicsUtil.cpp (100%) rename test/{src => }/TestUtilities/GraphicsUtil.hpp (100%) rename test/{src => }/TestUtilities/SystemUtil.cpp (100%) rename test/{src => }/TestUtilities/SystemUtil.hpp (100%) rename test/{src => }/TestUtilities/WindowUtil.cpp (100%) rename test/{src => }/TestUtilities/WindowUtil.hpp (100%) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 1b85127f..b986e248 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