zig-jwt/build.zig

28 lines
813 B
Zig
Raw Normal View History

2021-05-10 23:57:41 -06:00
const std = @import("std");
pub fn build(b: *std.build.Builder) void {
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const optimize = b.standardOptimizeOption(.{});
2021-05-10 23:57:41 -06:00
const target = b.standardTargetOptions(.{});
_ = b.addModule("jwt", .{
.source_file = .{ .path = "jwt.zig" },
});
2021-05-10 23:57:41 -06:00
const lib = b.addStaticLibrary(.{
.name = "zig-jwt",
.root_source_file = .{ .path = "jwt.zig" },
.optimize = optimize,
.target = target,
});
b.installArtifact(lib);
var main_tests = b.addTest(.{
.root_source_file = .{ .path = "jwt.zig" },
});
2021-05-10 23:57:41 -06:00
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&main_tests.step);
}