Files
FluidSimulation/.vscode/launch.json
T

30 lines
1007 B
JSON
Raw Normal View History

2026-04-06 09:55:59 +02:00
{
// 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": [
{
"name": "Launch",
2026-04-06 20:35:13 +02:00
"type": "cppdbg",
2026-04-06 09:55:59 +02:00
"request": "launch",
"program": "${workspaceRoot}/build/FluidSimulation",
"args": [],
2026-04-06 20:35:13 +02:00
"cwd": "${workspaceRoot}/build",
2026-04-11 10:15:50 +02:00
"MIMode": "gdb",
"setupCommands": [
{
"text": "-enable-pretty-printing",
"description": "enable pretty printing",
"ignoreFailures": false
},
{
"text": "source ${workspaceRoot}/Seele/gdb/Seele.py",
"description": "load Seele python script",
"ignoreFailures": false
}
],
2026-04-06 09:55:59 +02:00
}
]
}