Activate Debugging on CMake

This commit is contained in:
2020-01-11 22:43:22 -08:00
parent 0720c9bb28
commit d0cbfacef8
2 changed files with 2 additions and 1 deletions

2
.vscode/launch.json vendored
View File

@@ -5,7 +5,7 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Build and Debug", "name": "Debug",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/FaultFinder", "program": "${workspaceFolder}/FaultFinder",

1
.vscode/tasks.json vendored
View File

@@ -6,6 +6,7 @@
"type": "shell", "type": "shell",
"command": "cmake", "command": "cmake",
"args": [ "args": [
"-DCMAKE_BUILD_TYPE=Debug",
"." "."
], ],
"group": { "group": {