Skip to content

Commit

Permalink
comment non-existent zig command
Browse files Browse the repository at this point in the history
  • Loading branch information
gballet committed Jun 13, 2024
1 parent 2e51c8a commit 3a84118
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ pub fn build(b: *Build) void {
.optimize = optimize,
});

const to_dot_exe = b.addExecutable(.{
.name = "to_dot",
.root_source_file = .{ .path = "src/to_dot.zig" },
.target = target,
.optimize = optimize,
});
to_dot_exe.root_module.addImport("verkle-crypto", verkle_crypto.module("verkle-crypto"));
to_dot_exe.linkLibrary(verkle_crypto.artifact("verkle-crypto"));
var to_dot = b.addRunArtifact(to_dot_exe);
const to_dot_step = b.step("to_dot", "Dump dot file");
to_dot_step.dependOn(&to_dot.step);
// const to_dot_exe = b.addExecutable(.{
// .name = "to_dot",
// .root_source_file = .{ .cwd_relative = "src/to_dot.zig" },
// .target = target,
// .optimize = optimize,
// });
// to_dot_exe.root_module.addImport("verkle-crypto", verkle_crypto.module("verkle-crypto"));
// to_dot_exe.linkLibrary(verkle_crypto.artifact("verkle-crypto"));
// var to_dot = b.addRunArtifact(to_dot_exe);
// const to_dot_step = b.step("to_dot", "Dump dot file");
// to_dot_step.dependOn(&to_dot.step);

const t = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
Expand Down

0 comments on commit 3a84118

Please sign in to comment.