Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51bac22 commit 547fbfdCopy full SHA for 547fbfd
1 file changed
build.zig
@@ -36,17 +36,4 @@ pub fn build(b: *std.Build) !void {
36
.root_module = exe_module,
37
});
38
b.installArtifact(exe);
39
-
40
- const readme_module = b.createModule(.{
41
- .root_source_file = b.path("tmp/readme_examples_test.zig"),
42
- .target = target,
43
- .optimize = optimize,
44
- });
45
- readme_module.addImport("zigly", lib_module);
46
47
- const readme_exe = b.addExecutable(.{
48
- .name = "readme-examples-test",
49
- .root_module = readme_module,
50
51
- b.installArtifact(readme_exe);
52
}
0 commit comments