zig-jwt/build.zig

27 lines
713 B
Zig

const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("jwt", .{
.root_source_file = b.path("jwt.zig"),
});
const lib = b.addStaticLibrary(.{
.name = "zig-jwt",
.root_source_file = b.path("jwt.zig"),
.optimize = optimize,
.target = target,
});
b.installArtifact(lib);
const main_tests = b.addTest(.{
.root_source_file = b.path("jwt.zig"),
});
const run_main_tests = b.addRunArtifact(main_tests);
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&run_main_tests.step);
}