Skip to content

Commit ad7ae4d

Browse files
committed
dp/
1 parent 682812e commit ad7ae4d

File tree

8 files changed

+32933
-90
lines changed

8 files changed

+32933
-90
lines changed

.vscode/tasks.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "shell",
8+
"label": "cpp build active file",
9+
"command": "/usr/bin/cpp",
10+
"args": [
11+
"-g",
12+
"${file}",
13+
"-o",
14+
"${fileDirname}/${fileBasenameNoExtension}"
15+
],
16+
"options": {
17+
"cwd": "/usr/bin"
18+
},
19+
"problemMatcher": [
20+
"$gcc"
21+
],
22+
"group": "build"
23+
}
24+
]
25+
}

0 commit comments

Comments
 (0)