Added reading test folder

This commit is contained in:
Ulysse Cura 2025-08-11 19:51:18 +02:00
parent 31000d0126
commit abe2a2ce4e
4 changed files with 60 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
build
2D_Engine_Casio_Tool

18
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
"files.associations": {
"complex": "cpp",
"string": "cpp",
"iterator": "cpp",
"string_view": "cpp",
"random": "cpp",
"fstream": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"streambuf": "cpp",
"system_error": "cpp",
"stdexcept": "cpp"
}
}

38
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,38 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"detail": "Build project",
"type": "shell",
"command": "make",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Clean",
"detail": "Clean build directory and executable",
"type": "shell",
"command": "make",
"args": [
"clean"
],
"group": "build",
"presentation": {
"echo": true,
"reveal": "never",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
}

View File

@ -31,7 +31,7 @@ RESET := \033[0m
# Total number of files to process
TOTAL_FILES := $(shell echo $$(($(words $(SOURCES))+1)))
CURRENT_FILE = 0
CURRENT_FILE := 0
# Default targets
all: $(BUILD_DIR) $(OUTPUT) end
@ -56,6 +56,7 @@ $(BUILD_DIR)/%.o: %.cpp
# Source files dependencies
-include $(OBJECTS:.o=.d)
# Print ending message
end:
@echo "Built target $(OUTPUT)"