All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m22s
`zlog` is used to log messages to the log file that is also used by `serve` by default, making it a single source for all the log messages.
68 lines
2.0 KiB
Zig
68 lines
2.0 KiB
Zig
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);
|
|
}
|