zig/test/standalone/issue_339/build.zig

23 lines
574 B
Zig

const std = @import("std");
pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it");
b.default_step = test_step;
const optimize: std.builtin.OptimizeMode = .Debug;
const target = b.graph.host;
const obj = b.addObject(.{
.name = "test",
.root_module = b.createModule(.{
.root_source_file = b.path("test.zig"),
.target = target,
.optimize = optimize,
}),
});
// TODO: actually check the output
_ = obj.getEmittedBin();
test_step.dependOn(&obj.step);
}