Occlusion attempt 1

This commit is contained in:
StephenAdamson
2024-12-17 19:44:54 +00:00
parent 8d89f86c69
commit 80afd547e5
7 changed files with 131 additions and 31 deletions
+45
View File
@@ -0,0 +1,45 @@
{
// 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 executable 'dorf'",
"cargo": {
"args": [
"build",
"--bin=dorf",
"--package=dorf"
],
"filter": {
"name": "dorf",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'dorf'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=dorf",
"--package=dorf"
],
"filter": {
"name": "dorf",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}