|
43 | 43 | },
|
44 | 44 | {
|
45 | 45 | "label": "Zig: Run main",
|
46 |
| - "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "main.zig" ], |
| 46 | + "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "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", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "main.zig" , "--", "ArgsForYourProgram" ], |
| 53 | + "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "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", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "main.zig" , "-O", "ReleaseFast" ], |
| 60 | + "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "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", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "main.zig" , "-O", "ReleaseSafe" ], |
| 67 | + "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "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", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "main.zig" , "-O", "ReleaseSmall" ], |
| 74 | + "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "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": []
|
78 | 78 | },
|
79 | 79 | {
|
80 | 80 | "label": "Zig: Run current file",
|
81 |
| - "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "${file}" ], |
| 81 | + "args": [ "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "${file}" ], |
82 | 82 | "detail": "'zig run' active file in the current workspace.",
|
83 | 83 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false },
|
84 | 84 | "presentation": { "group": "launch", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": []
|
85 | 85 | },
|
86 | 86 | {
|
87 | 87 | "label": "zTime Zig: Run current file",
|
88 |
| - "args": [ "zig", "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-Ilib/raylib/include", "${file}" ], |
| 88 | + "args": [ "zig", "run", "-lc", "-lraylib", "-lwinmm", "-lgdi32", "-lopengl32", "-L", "lib/raylib", "-I.", "-Ilib/raylib/include", "${file}" ], |
89 | 89 | "detail": "'zTime zig run' active file in the current workspace.",
|
90 | 90 | "command": "zig", "type": "shell", "options": { "cwd": "${workspaceRoot}" }, "group": { "kind": "none", "isDefault": false },
|
91 | 91 | "presentation": { "group": "zTime", "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": false, "clear": true, "close": false }, "problemMatcher": []
|
|
0 commit comments