File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1
1
.vscode /*
2
2
! .vscode /settings.json
3
3
! .vscode /c_cpp_properties.json
4
+ ! .vscode /tasks.json
4
5
! .vscode /README.md
5
6
6
7
* .o
Original file line number Diff line number Diff line change
1
+ {
2
+ "tasks" : [
3
+ {
4
+ "type" : " shell" ,
5
+ "label" : " 构建 chsrc" ,
6
+ "command" : " just" ,
7
+ "args" : [" build" ],
8
+ "options" : {
9
+ "cwd" : " ${workspaceFolder}"
10
+ },
11
+ "problemMatcher" : [
12
+ " $gcc"
13
+ ],
14
+ "group" : {
15
+ "kind" : " build" ,
16
+ "isDefault" : true
17
+ },
18
+ "detail" : " 使用 just build 编译"
19
+ },
20
+ {
21
+ "type" : " shell" ,
22
+ "label" : " 测试 chsrc" ,
23
+ "command" : " just" ,
24
+ "args" : [" test" ],
25
+ "options" : {
26
+ "cwd" : " ${workspaceFolder}"
27
+ },
28
+ "problemMatcher" : [
29
+ " $gcc"
30
+ ],
31
+ "group" : {
32
+ "kind" : " test" ,
33
+ "isDefault" : true
34
+ },
35
+ "detail" : " 使用 just test 测试"
36
+ }
37
+ ],
38
+ "version" : " 2.0.0"
39
+ }
You can’t perform that action at this time.
0 commit comments