29 lines
934 B
Zig
29 lines
934 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
const static_build = b.option(bool, "static_build", "builds backlog dependencies for static linking") orelse false;
|
|
_ = static_build;
|
|
|
|
const mod = b.addModule("zmath", .{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.root_source_file = b.path("zmath.zig"),
|
|
});
|
|
|
|
const test_step = b.step("test", "runs tests for zmath");
|
|
const tests = b.addTest(.{
|
|
.root_module = b.createModule(.{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.root_source_file = b.path("zmath.zig"),
|
|
.link_libc = true,
|
|
}),
|
|
});
|
|
|
|
tests.root_module.addImport("zmath", mod);
|
|
const runArtifact = b.addRunArtifact(tests);
|
|
test_step.dependOn(&runArtifact.step);
|
|
}
|