Using VsCode for programming !! :-)

This commit is contained in:
Ulysse Cura 2024-10-17 18:06:35 +02:00
parent 1e29f7e4a5
commit a1d05dcf27
1 changed files with 35 additions and 0 deletions

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

@ -0,0 +1,35 @@
{
"tasks": [
{
"type": "shell",
"command": "compiler 2D_Engine",
"label": "Compiler",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
},
{
"type": "shell",
"command": "./2D_Engine",
"label": "Launch",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
},
{
"type": "shell",
"command": "compiler 2D_Engine; ./2D_Engine",
"label": "Compiler and Launch",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}