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

16
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/_bin/Debug/Template",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

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
}
}
]
}