Changed core dir name.

This commit is contained in:
Ulysse Cura 2026-05-04 20:26:24 +02:00
parent 1dee7a48bc
commit 67850aff28
3 changed files with 4 additions and 6 deletions

3
.gitignore vendored
View File

@ -1,3 +1,2 @@
build
SDL2_Core
Casio_Core
core

View File

@ -4,8 +4,7 @@
"name": "Default",
"includePath": [
"src/**/headers",
"SDL2_Core/src/headers",
"Casio_Core/src/headers"
"core/src/headers"
]
}
],

View File

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