From 67850aff2874c2a77bb5b38f9ca3c1d41efd49d3 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Mon, 4 May 2026 20:26:24 +0200 Subject: [PATCH] Changed core dir name. --- .gitignore | 3 +-- .vscode/c_cpp_properties.json | 3 +-- Makefile | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index ceefbbc..524b093 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ build -SDL2_Core -Casio_Core +core diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 96b9b96..4e4328e 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -4,8 +4,7 @@ "name": "Default", "includePath": [ "src/**/headers", - "SDL2_Core/src/headers", - "Casio_Core/src/headers" + "core/src/headers" ] } ], diff --git a/Makefile b/Makefile index a125e1c..699783a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -SHELL = /bin/bash +SHELL = /usr/bin/env bash # Build folder BUILD_DIR = build @@ -26,7 +26,7 @@ all: build_core build_src # Sub Makefiles SOURCE_DIR = src -CORE_DIR = SDL2_Core/src +CORE_DIR = core/src ASSETS_DIR = assets include $(CORE_DIR)/Makefile