Added reading test folder
This commit is contained in:
parent
31000d0126
commit
abe2a2ce4e
|
@ -0,0 +1,2 @@
|
|||
build
|
||||
2D_Engine_Casio_Tool
|
|
@ -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"
|
||||
}
|
||||
}
|
|
@ -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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
3
Makefile
3
Makefile
|
@ -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)"
|
||||
|
||||
|
|
Loading…
Reference in New Issue