We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c489ab4 commit fc2aa43Copy full SHA for fc2aa43
.gitignore
@@ -1,2 +1,3 @@
1
+.zig-cache
2
/zig-cache
-/zig-out
3
+/zig-out
build.zig
@@ -7,14 +7,14 @@ pub fn build(b: *std.Build) void {
7
const target = b.standardTargetOptions(.{});
8
9
_ = b.addModule("ziglangSet", .{
10
- .root_source_file = .{ .path = "src/root.zig" },
+ .root_source_file = b.path("src/root.zig"),
11
.target = target,
12
.optimize = optimize,
13
});
14
15
const main_tests = b.addTest(.{
16
.name = "ziglang-set tests",
17
18
19
20
0 commit comments