build.zig (4686B)
1 const std = @import("std"); 2 const gpu = @import("mach-gpu"); 3 4 // Although this function looks imperative, note that its job is to 5 // declaratively construct a build graph that will be executed by an external 6 // runner. 7 pub fn build(b: *std.Build) void { 8 // Standard target options allows the person running `zig build` to choose 9 // what target to build for. Here we do not override the defaults, which 10 // means any target is allowed, and the default is native. Other options 11 // for restricting supported target set are available. 12 const target = b.standardTargetOptions(.{}); 13 14 // Standard optimization options allow the person running `zig build` to select 15 // between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not 16 // set a preferred release mode, allowing the user to decide how to optimize. 17 const optimize = b.standardOptimizeOption(.{}); 18 19 const lib = b.addStaticLibrary(.{ 20 .name = "render-zig", 21 // In this case the main source file is merely a path, however, in more 22 // complicated build scripts, this could be a generated file. 23 .root_source_file = .{ .src_path = .{ .owner = b, .sub_path = "src/root.zig" } }, 24 .target = target, 25 .optimize = optimize, 26 }); 27 28 // This declares intent for the library to be installed into the standard 29 // location when the user invokes the "install" step (the default step when 30 // running `zig build`). 31 b.installArtifact(lib); 32 33 const exe = b.addExecutable(.{ 34 .name = "render-zig", 35 .root_source_file = .{ .src_path = .{ .owner = b, .sub_path = "src/main.zig" } }, 36 .target = target, 37 .optimize = optimize, 38 }); 39 40 if (b.lazyDependency("mach-glfw", .{ 41 .target = target, 42 .optimize = optimize, 43 })) |glfw_dep| { 44 exe.root_module.addImport("mach_glfw", glfw_dep.module("mach-glfw")); 45 } 46 47 if (b.lazyDependency("mach-gpu", .{ 48 .target = target, 49 .optimize = optimize, 50 })) |gpu_dep| { 51 exe.root_module.addImport("mach_gpu", gpu_dep.module("mach-gpu")); 52 try gpu.link(gpu_dep.builder, exe, &exe.root_module, .{}); 53 } 54 55 if (b.lazyDependency("zigimg", .{ 56 .target = target, 57 .optimize = optimize, 58 })) |img_dep| { 59 exe.root_module.addImport("zigimg", img_dep.module("zigimg")); 60 } 61 62 // This declares intent for the executable to be installed into the 63 // standard location when the user invokes the "install" step (the default 64 // step when running `zig build`). 65 b.installArtifact(exe); 66 67 // This *creates* a Run step in the build graph, to be executed when another 68 // step is evaluated that depends on it. The next line below will establish 69 // such a dependency. 70 const run_cmd = b.addRunArtifact(exe); 71 72 // By making the run step depend on the install step, it will be run from the 73 // installation directory rather than directly from within the cache directory. 74 // This is not necessary, however, if the application depends on other installed 75 // files, this ensures they will be present and in the expected location. 76 run_cmd.step.dependOn(b.getInstallStep()); 77 78 // This allows the user to pass arguments to the application in the build 79 // command itself, like this: `zig build run -- arg1 arg2 etc` 80 if (b.args) |args| { 81 run_cmd.addArgs(args); 82 } 83 84 // This creates a build step. It will be visible in the `zig build --help` menu, 85 // and can be selected like this: `zig build run` 86 // This will evaluate the `run` step rather than the default, which is "install". 87 const run_step = b.step("run", "Run the app"); 88 run_step.dependOn(&run_cmd.step); 89 90 // Creates a step for unit testing. This only builds the test executable 91 // but does not run it. 92 const lib_unit_tests = b.addTest(.{ 93 .root_source_file = .{ .src_path = .{ .owner = b, .sub_path = "src/root.zig" } }, 94 .target = target, 95 .optimize = optimize, 96 }); 97 98 const run_lib_unit_tests = b.addRunArtifact(lib_unit_tests); 99 100 const exe_unit_tests = b.addTest(.{ 101 .root_source_file = .{ .src_path = .{ .owner = b, .sub_path = "src/main.zig" } }, 102 .target = target, 103 .optimize = optimize, 104 }); 105 106 const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests); 107 108 // Similar to creating the run step earlier, this exposes a `test` step to 109 // the `zig build --help` menu, providing a way for the user to request 110 // running the unit tests. 111 const test_step = b.step("test", "Run unit tests"); 112 test_step.dependOn(&run_lib_unit_tests.step); 113 test_step.dependOn(&run_exe_unit_tests.step); 114 }