const std = @import("std"); pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); const zlog = b.dependency("zlog", .{ .target = target, .optimize = optimize, .timestamp = false, .stderr = false, .file = "log", }); const zterm = b.dependency("zterm", .{ .target = target, .optimize = optimize, }); const exe = b.addExecutable(.{ .name = "tui_website", .root_module = b.createModule(.{ .root_source_file = b.path("src/main.zig"), .target = target, .optimize = optimize, .imports = &.{ .{ .name = "zterm", .module = zterm.module("zterm") }, .{ .name = "zlog", .module = zlog.module("zlog") }, .{ .name = "about", .module = b.createModule(.{ .root_source_file = b.path("doc/about.md"), }), }, .{ .name = "blog", .module = b.createModule(.{ .root_source_file = b.path("doc/blog.md"), }), }, }, }), }); b.installArtifact(exe); const run_step = b.step("run", "Run the app"); const run_cmd = b.addRunArtifact(exe); run_step.dependOn(&run_cmd.step); run_cmd.step.dependOn(b.getInstallStep()); // This allows the user to pass arguments to the application in the build // command itself, like this: `zig build run -- arg1 arg2 etc` if (b.args) |args| { run_cmd.addArgs(args); } const exe_tests = b.addTest(.{ .root_module = exe.root_module, }); // A run step that will run the test executable. const run_exe_tests = b.addRunArtifact(exe_tests); const test_step = b.step("test", "Run tests"); test_step.dependOn(&run_exe_tests.step); }