vscode configs

This commit is contained in:
timerix 2023-02-10 13:00:53 +06:00
parent f5b4d6c7ee
commit 322b70bc29
2 changed files with 2 additions and 41 deletions

17
.vscode/launch.json vendored
View File

@ -9,10 +9,10 @@
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"preLaunchTask": "build_cb2c_dbg", "preLaunchTask": "build_cb2c_dbg",
"program": "bin/cb2c.com", "program": "cb2c.com",
"args": [], "args": [],
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}/bin",
"environment": [], "environment": [],
"externalConsole": false, "externalConsole": false,
"internalConsoleOptions": "openOnSessionStart", "internalConsoleOptions": "openOnSessionStart",
@ -34,19 +34,6 @@
"ignoreFailures": true "ignoreFailures": true
} }
] ]
},
{
"name": "(Windows) Debug",
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "build_cb2c_dbg",
"cwd": "${workspaceRoot}\\bin",
"program": "${workspaceRoot}\\bin\\cb2c.com",
"args": [],
"environment": [],
"stopAtEntry": false,
"console": "integratedTerminal"
} }
] ]
} }

26
.vscode/tasks.json vendored
View File

@ -3,32 +3,6 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{
"label": "build",
"detail": "build project",
"type": "cppbuild",
"command": "make",
"args": [
"build"
],
"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_cb2c_dbg", "label": "build_cb2c_dbg",
"detail": "build project with debug symbols", "detail": "build project with debug symbols",