| author | |
| committer | |
| log | b9313635237c1f05ed4e40b8b1dba5a51f76ef0f |
| tree | fb7882eb9aa698699f3131be0d391aa04b439d2b |
| parent | fc908cce2f18abe9f587f53005b1a5992d88c211 |
2 files changed, 1 insertions(+), 2 deletions(-)
.gitignore-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | zig-cache | ||
| 2 | .zig-cache | 1 | .zig-cache |
| 3 | zig-out | 2 | zig-out |
| 4 | .zigmod | 3 | .zigmod |
build.zig+1-1| ... | @@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void { |
| 7 | 7 | ||
| 8 | const exe = b.addExecutable(.{ | 8 | const exe = b.addExecutable(.{ |
| 9 | .name = "zig-color", | 9 | .name = "zig-color", |
| 10 | .root_source_file = .{ .path = "main.zig" }, | 10 | .root_source_file = b.path("main.zig"), |
| 11 | .target = target, | 11 | .target = target, |
| 12 | .optimize = mode, | 12 | .optimize = mode, |
| 13 | }); | 13 | }); |