aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 160d24220776a6fbb0b3260dfedcadd56747b584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug with Ninja",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/mwe/ecs-homemade/build/ecs-homemade.exe",
            "args": [],
            "stopAtEntry": true,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "preLaunchTask": "build",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "logging": {
                "engineLogging": true
            }
        }
    ]
}