Skip to content

Commit 48156b3

Browse files
Merge pull request #315 from Distributive-Network/Xmader/chore/vscode-debug-fast-build
VSCode Debugger Fast Build
2 parents 9903362 + f9a3496 commit 48156b3

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"run"
1818
],
1919
},
20-
"preLaunchTask": "Build",
20+
"preLaunchTask": "Fast build",
2121
"cwd": "${fileDirname}",
2222
"environment": [],
2323
"externalConsole": false,

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,22 @@
2626
"isDefault": true
2727
}
2828
},
29+
{
30+
"label": "Fast build",
31+
"type": "process",
32+
"command": "poetry",
33+
"args": [
34+
"run",
35+
"python",
36+
"./build.py",
37+
],
38+
"problemMatcher": [
39+
"$gcc"
40+
],
41+
"group": {
42+
"kind": "build",
43+
}
44+
},
2945
//
3046
// Test
3147
//

0 commit comments

Comments
 (0)