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 build
SDL2_Core core
Casio_Core

View File

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

View File

@ -1,4 +1,4 @@
SHELL = /bin/bash SHELL = /usr/bin/env bash
# Build folder # Build folder
BUILD_DIR = build BUILD_DIR = build
@ -26,7 +26,7 @@ all: build_core build_src
# Sub Makefiles # Sub Makefiles
SOURCE_DIR = src SOURCE_DIR = src
CORE_DIR = SDL2_Core/src CORE_DIR = core/src
ASSETS_DIR = assets ASSETS_DIR = assets
include $(CORE_DIR)/Makefile include $(CORE_DIR)/Makefile