added template files

This commit is contained in:
Sarah Faey 2024-09-18 22:53:52 +02:00
parent abaf74850e
commit 2fa0eb2b05
10 changed files with 320 additions and 8 deletions

27
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"type": "shell",
"command": "premake5 ecc && premake5 gmake2 && make",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build release",
"type": "shell",
"command": "premake5 ecc && premake5 gmake2 && make config=release",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
}
]
}