Initial commit

This commit is contained in:
2023-06-22 15:24:30 +02:00
commit feb87f3cf2
4 changed files with 117 additions and 0 deletions

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

@@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Test",
"type": "shell",
"command": "scons",
"options": {
"cwd": "${workspaceFolder}/test"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}