Skip to content

Commit 792864a

Browse files
committed
simplify build.zig
Signed-off-by: Jan Hendrik Farr <[email protected]>
1 parent d116858 commit 792864a

File tree

1 file changed

+0
-45
lines changed

1 file changed

+0
-45
lines changed

build.zig

-45
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,12 @@
33

44
const std = @import("std");
55

6-
// Although this function looks imperative, note that its job is to
7-
// declaratively construct a build graph that will be executed by an external
8-
// runner.
96
pub fn build(b: *std.Build) void {
10-
// Standard target options allows the person running `zig build` to choose
11-
// what target to build for. Here we do not override the defaults, which
12-
// means any target is allowed, and the default is native. Other options
13-
// for restricting supported target set are available.
147
const target = b.standardTargetOptions(.{});
15-
16-
// Standard optimization options allow the person running `zig build` to select
17-
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
18-
// set a preferred release mode, allowing the user to decide how to optimize.
198
const optimize = b.standardOptimizeOption(.{});
209

2110
const exe = b.addExecutable(.{
2211
.name = "dohproxy-zig",
23-
// In this case the main source file is merely a path, however, in more
24-
// complicated build scripts, this could be a generated file.
2512
.root_source_file = .{ .path = "src/main.zig" },
2613
.target = target,
2714
.optimize = optimize,
@@ -35,47 +22,15 @@ pub fn build(b: *std.Build) void {
3522
exe.linkLibC();
3623
exe.linkLibCpp();
3724

38-
// This declares intent for the executable to be installed into the
39-
// standard location when the user invokes the "install" step (the default
40-
// step when running `zig build`).
4125
b.installArtifact(exe);
4226

43-
// This *creates* a Run step in the build graph, to be executed when another
44-
// step is evaluated that depends on it. The next line below will establish
45-
// such a dependency.
4627
const run_cmd = b.addRunArtifact(exe);
47-
48-
// By making the run step depend on the install step, it will be run from the
49-
// installation directory rather than directly from within the cache directory.
50-
// This is not necessary, however, if the application depends on other installed
51-
// files, this ensures they will be present and in the expected location.
5228
run_cmd.step.dependOn(b.getInstallStep());
5329

54-
// This allows the user to pass arguments to the application in the build
55-
// command itself, like this: `zig build run -- arg1 arg2 etc`
5630
if (b.args) |args| {
5731
run_cmd.addArgs(args);
5832
}
5933

60-
// This creates a build step. It will be visible in the `zig build --help` menu,
61-
// and can be selected like this: `zig build run`
62-
// This will evaluate the `run` step rather than the default, which is "install".
6334
const run_step = b.step("run", "Run the app");
6435
run_step.dependOn(&run_cmd.step);
65-
66-
// Creates a step for unit testing. This only builds the test executable
67-
// but does not run it.
68-
const unit_tests = b.addTest(.{
69-
.root_source_file = .{ .path = "src/main.zig" },
70-
.target = target,
71-
.optimize = optimize,
72-
});
73-
74-
const run_unit_tests = b.addRunArtifact(unit_tests);
75-
76-
// Similar to creating the run step earlier, this exposes a `test` step to
77-
// the `zig build --help` menu, providing a way for the user to request
78-
// running the unit tests.
79-
const test_step = b.step("test", "Run unit tests");
80-
test_step.dependOn(&run_unit_tests.step);
8136
}

0 commit comments

Comments
 (0)