|
43 | 43 | }, |
44 | 44 | { |
45 | 45 | "label": "Zig: Run main", |
46 | | - "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "main.zig" ], |
| 46 | + "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "-I.", "main.zig" ], |
47 | 47 | "detail": "zig run main.zig", |
48 | 48 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": true }, |
49 | 49 | "presentation": { "group": "launch", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": [] |
50 | 50 | }, |
51 | 51 | { |
52 | 52 | "label": "Zig: Run main (With Args)", |
53 | | - "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "main.zig", "--", "ArgsForYourProgram" ], |
| 53 | + "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "-I.", "main.zig", "--", "ArgsForYourProgram" ], |
54 | 54 | "detail": "zig run main.zig -- ArgsForYourProgram", |
55 | 55 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false }, |
56 | 56 | "presentation": { "group": "launch", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": [] |
57 | 57 | }, |
58 | 58 | { |
59 | 59 | "label": "Zig: Run main (Fast)", |
60 | | - "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "main.zig", "-O", "ReleaseFast" ], |
| 60 | + "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "-I.", "main.zig", "-O", "ReleaseFast" ], |
61 | 61 | "detail": "zig run main.zig -O ReleaseFast", |
62 | 62 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false }, |
63 | 63 | "presentation": { "group": "launch", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": [] |
64 | 64 | }, |
65 | 65 | { |
66 | 66 | "label": "Zig: Run main (Safe)", |
67 | | - "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "main.zig", "-O", "ReleaseSafe" ], |
| 67 | + "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "-I.", "main.zig", "-O", "ReleaseSafe" ], |
68 | 68 | "detail": "zig run main.zig -O ReleaseSafe", |
69 | 69 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false }, |
70 | 70 | "presentation": { "group": "launch", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": [] |
71 | 71 | }, |
72 | 72 | { |
73 | 73 | "label": "Zig: Run main (Small)", |
74 | | - "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "main.zig", "-O", "ReleaseSmall" ], |
| 74 | + "args": [ "run", "-lc++", "-lgdi32", "-ldwmapi", "-ld3d11", "-ld3dcompiler_47", "-I.", "main.zig", "-O", "ReleaseSmall" ], |
75 | 75 | "detail": "zig run main.zig -O ReleaseSmall", |
76 | 76 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false }, |
77 | 77 | "presentation": { "group": "launch", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": [] |
|
92 | 92 | }, |
93 | 93 | { |
94 | 94 | "label": "Zig: Docs", |
95 | | - "args": [ "run", "-femit-docs", "main.zig" ], |
| 95 | + "args": [ "run", "-femit-docs", "-I.", "main.zig" ], |
96 | 96 | "detail": "Generate docs from source comments.", |
97 | 97 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false }, |
98 | 98 | "presentation": { "group": "docs", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": [] |
|
0 commit comments