From 322b70bc292766511d78b2b96566d6d0924a3c4c Mon Sep 17 00:00:00 2001 From: timerix Date: Fri, 10 Feb 2023 13:00:53 +0600 Subject: [PATCH] vscode configs --- .vscode/launch.json | 17 ++--------------- .vscode/tasks.json | 26 -------------------------- 2 files changed, 2 insertions(+), 41 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 903a142..fbbb7f9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,10 +9,10 @@ "type": "cppdbg", "request": "launch", "preLaunchTask": "build_cb2c_dbg", - "program": "bin/cb2c.com", + "program": "cb2c.com", "args": [], "stopAtEntry": false, - "cwd": "${workspaceFolder}", + "cwd": "${workspaceFolder}/bin", "environment": [], "externalConsole": false, "internalConsoleOptions": "openOnSessionStart", @@ -34,19 +34,6 @@ "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" } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f1df5e6..736b609 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -3,32 +3,6 @@ "version": "2.0.0", "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", "detail": "build project with debug symbols",