File tree Expand file tree Collapse file tree 3 files changed +28
-6
lines changed Expand file tree Collapse file tree 3 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 1
1
*
2
2
! * /
3
3
! .vscode /launch.json
4
+ ! .vscode /tasks.json
4
5
! libs /** /*
5
6
libs /** /zig-cache
6
7
! Media /*
Original file line number Diff line number Diff line change 5
5
"version" : " 0.2.0" ,
6
6
"configurations" : [
7
7
{
8
- "name" : " main.py " ,
9
- "type" : " python " ,
8
+ "name" : " zig " ,
9
+ "type" : " cppvsdbg " ,
10
10
"request" : " launch" ,
11
- "program" : " main.py" ,
11
+ "program" : " ${workspaceFolder}/zig-out/bin/cc-legacy-mod-converter" ,
12
+ "args" : [],
13
+ "cwd" : " ${workspaceFolder}" ,
12
14
"console" : " integratedTerminal" ,
13
- "justMyCode " : false
14
- },
15
+ "preLaunchTask " : " build zig "
16
+ }
15
17
]
16
- }
18
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "label" : " build zig" ,
6
+ "type" : " shell" ,
7
+ "command" : " zig" ,
8
+ "args" : [
9
+ " build" ,
10
+ " -freference-trace" ,
11
+ ],
12
+ "problemMatcher" : [],
13
+ "group" : {
14
+ "kind" : " build" ,
15
+ "isDefault" : true
16
+ }
17
+ }
18
+ ]
19
+ }
You can’t perform that action at this time.
0 commit comments