From a06140187d6468e21e2273cd537a0310635d3066 Mon Sep 17 00:00:00 2001 From: cat Date: Fri, 6 Mar 2026 16:34:39 +0200 Subject: [PATCH] Made the paths absolute, added CMAKE_EXPORT_COMPILER_COMMANDS to CMakeLists.txt --- source/Systems/ECS/Components.cpp | 4 ++-- source/Systems/ECS/World.cpp | 6 +++--- source/Systems/Random.cpp | 3 ++- source/Types/UUID.cpp | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/source/Systems/ECS/Components.cpp b/source/Systems/ECS/Components.cpp index de6fe06..f2466e4 100644 --- a/source/Systems/ECS/Components.cpp +++ b/source/Systems/ECS/Components.cpp @@ -7,7 +7,7 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../../headers/Systems/ECS.hpp" -#include "../../../headers/Systems/ECS/BuiltinComponents.hpp" +#include "Systems/ECS.hpp" +#include "Systems/ECS/BuiltinComponents.hpp" // Empty until future use diff --git a/source/Systems/ECS/World.cpp b/source/Systems/ECS/World.cpp index 1dce115..6175d4f 100644 --- a/source/Systems/ECS/World.cpp +++ b/source/Systems/ECS/World.cpp @@ -7,9 +7,9 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../../headers/Systems/ECS.hpp" -#include "../../../headers/Systems/ECS/BuiltinComponents.hpp" -#include "../../../headers/Systems/Random.hpp" +#include "Systems/ECS.hpp" +#include "Systems/ECS/BuiltinComponents.hpp" +#include "Systems/Random.hpp" using namespace Tourmaline::Systems; using namespace ECS; diff --git a/source/Systems/Random.cpp b/source/Systems/Random.cpp index c131964..2dbe49f 100644 --- a/source/Systems/Random.cpp +++ b/source/Systems/Random.cpp @@ -6,7 +6,8 @@ * v. 2.0. If a copy of the MPL was not distributed with this file, You can * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../headers/Systems/Random.hpp" + +#include "Systems/Random.hpp" #include #include diff --git a/source/Types/UUID.cpp b/source/Types/UUID.cpp index dfa5a8c..79c0422 100644 --- a/source/Types/UUID.cpp +++ b/source/Types/UUID.cpp @@ -7,7 +7,7 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../headers/Types.hpp" +#include "Types.hpp" #include #include