Merge pull request #2208 from akruphi/date_configure
[far2l.git] / .vscode / launch.json
blobc0bba714830419f8771441123757ea5566911086
2     // Use IntelliSense to learn about possible attributes.
3     // Hover to view descriptions of existing attributes.
4     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5     "version": "0.2.0",
6     "configurations": [
7         {
8             "name": "(gdb) Launch",
9             "type": "cppdbg",
10             "request": "launch",
11             // Resolved by CMake Tools:
12             "program": "${command:cmake.launchTargetPath}",
13             "args": [],
14             "stopAtEntry": true,
15             "cwd": "${workspaceFolder}",
16             "environment": [
17                 {
18                     // add the directory where our target was built to the PATHs
19                     // it gets resolved by CMake Tools:
20                     "name": "PATH",
21                     "value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
22                 },
23                 {
24                     "name": "OTHER_VALUE",
25                     "value": "Something something"
26                 }
27             ],
28             "externalConsole": true,
29             "MIMode": "gdb",
30             "setupCommands": [
31                 {
32                     "description": "Enable pretty-printing for gdb",
33                     "text": "-enable-pretty-printing",
34                     "ignoreFailures": true
35                 }
36             ]
37         }
38     ]