Files
FluidSimulation/.vscode/launch.json
T

17 lines
534 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",
"MIMode": "lldb"
2026-04-06 09:55:59 +02:00
}
]
}