Revision 86b92ec720f566e35976cbac75f91e4df84216b3 authored by Christophe Prud'homme on 02 November 2020, 09:39:17 UTC, committed by Christophe Prud'homme on 02 November 2020, 09:39:17 UTC
add mor
skip feelpp
skip components
1 parent 27bf32f
Raw File
launch.json
{
    // 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": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${command:cmake.launchTargetPath}",
            "args": ["--config-file laplacian/triangle/triangle.cfg","--checker.script=$cfgdir/../python/laplacian.py", "--checker.solution=x", "--checker.compute-pde-coefficients=true"],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}
back to top