Initial drop of cppdap

This commit is contained in:
Ben Clayton
2019-10-31 17:06:38 +00:00
committed by Ben Clayton
commit 2dfd15462f
51 changed files with 9924 additions and 0 deletions

39
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,39 @@
{
// 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": "cppdap: hello_debugger",
"type": "hello_debugger",
"request": "launch"
},
{
"type": "lldb",
"request": "launch",
"name": "unittests (lldb)",
"program": "${workspaceFolder}/build/dap-unittests",
"cwd": "${workspaceRoot}",
},
{
"name": "unittests (gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/dap-unittests",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}