Made the paths absolute, added CMAKE_EXPORT_COMPILER_COMMANDS to CMakeLists.txt

This commit is contained in:
2026-03-06 16:34:39 +02:00
parent ce9ea6752d
commit a06140187d
4 changed files with 8 additions and 7 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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 <bit>
#include <cstdint>

View File

@@ -7,7 +7,7 @@
* obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "../../headers/Types.hpp"
#include "Types.hpp"
#include <charconv>
#include <cstdint>