launch.json
This commit is contained in:
parent
75f023a4bd
commit
6f7eb2ba50
8
.vscode/launch.json
vendored
8
.vscode/launch.json
vendored
@ -5,10 +5,10 @@
|
||||
"name": "(gdb) Debug",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"program": "$kerep.com",
|
||||
"program": "${workspaceFolder}/bin/kerep.com",
|
||||
"cwd": "${workspaceFolder}/bin",
|
||||
"preLaunchTask": "build_exec_dbg",
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${fileDirname}/bin",
|
||||
"externalConsole": false,
|
||||
"MIMode": "gdb",
|
||||
"miDebuggerPath": "gdb",
|
||||
@ -31,8 +31,8 @@
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build_exec_dbg",
|
||||
"program": "${workspaceFolder}/bin/kerep.com",
|
||||
"cwd": "${workspaceFolder}/bin",
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"externalConsole": false,
|
||||
"miDebuggerPath": "/usr/bin/gdb",
|
||||
"MIMode": "gdb",
|
||||
@ -48,8 +48,8 @@
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build_dbg",
|
||||
"cwd": "${workspaceFolder}\\bin",
|
||||
"program": "${workspaceFolder}\\bin\\kerep.com",
|
||||
"cwd": "${workspaceFolder}\\bin",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal"
|
||||
}
|
||||
|
||||
26
.vscode/tasks.json
vendored
26
.vscode/tasks.json
vendored
@ -3,32 +3,6 @@
|
||||
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build_exec",
|
||||
"detail": "build project",
|
||||
"type": "cppbuild",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"build_exec"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"problemMatcher": ["$gcc"],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"focus": true,
|
||||
"panel": "shared",
|
||||
"showReuseMessage": false,
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"label": "build_exec_dbg",
|
||||
"detail": "build project with debug symbols",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user