Backlog/lib/zgltf/build.zig

23 lines
536 B
Zig

const std = @import("std");
const bh = @import("bh");
pub fn build(b: *std.Build) void {
const opts = bh.declareOptions(b);
const mod = b.addModule("zgltf", .{
.root_source_file = b.path("src/zgltf.zig"),
.target = opts.target,
.optimize = opts.optimize,
});
const tests = b.addTest(.{
.root_module = mod,
});
b.installArtifact(tests);
var run_tests = b.addRunArtifact(tests);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&run_tests.step);
}