47 lines
1.7 KiB
Zig
47 lines
1.7 KiB
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
const is_freestanding = target.result.os.tag == .freestanding;
|
|
|
|
const temporalz = b.dependency("temporalz", .{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
const exe = b.addExecutable(.{
|
|
.name = "temporalz",
|
|
.root_module = b.createModule(.{
|
|
.root_source_file = b.path(if (is_freestanding) "src/wasm.zig" else "src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.link_libc = !is_freestanding,
|
|
.imports = &.{},
|
|
}),
|
|
});
|
|
exe.root_module.addImport("temporalz", temporalz.module("temporalz"));
|
|
exe.rdynamic = is_freestanding;
|
|
b.installArtifact(exe);
|
|
b.enable_wasmtime = true; // This doesn't work since Zig 0.17.0 release
|
|
|
|
const run_step = b.step("run", "Run the app");
|
|
switch (target.result.os.tag) {
|
|
.freestanding => {
|
|
const run_cmd = b.addSystemCommand(&.{ "node", "src/main.mjs" });
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
run_step.dependOn(&run_cmd.step);
|
|
},
|
|
.wasi => {
|
|
const run_cmd = b.addSystemCommand(&.{"wasmtime"});
|
|
run_cmd.addFileArg(exe.getEmittedBin());
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
run_step.dependOn(&run_cmd.step);
|
|
},
|
|
else => {
|
|
const run_cmd = b.addRunArtifact(exe);
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
run_cmd.addPassthruArgs();
|
|
run_step.dependOn(&run_cmd.step);
|
|
},
|
|
}
|
|
}
|