Skip to content
Snippets Groups Projects
Commit 2747021c authored by Brandon Lai-Cheong's avatar Brandon Lai-Cheong
Browse files

added configuration for vscode testing

parent 1f73c367
No related branches found
No related tags found
No related merge requests found
build
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/settings.json
\ No newline at end of file
{
// 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": "(ctest) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${cmake.testProgram}",
"args": ["${cmake.testArgs}"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment