{ // 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", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/build/FluidSimulation", "args": [], "cwd": "${workspaceRoot}/build", "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 } ], } ] }