This is mainly updates to the build system, but there were a couple of stdlib changes for the tests. The build system does include handling more properly now as well, I think. It has fewer hacks, at least.
78 lines
2.2 KiB
Zig
78 lines
2.2 KiB
Zig
// This file is licensed under the CC0 1.0 license.
|
|
// See: https://creativecommons.org/publicdomain/zero/1.0/legalcode
|
|
|
|
const std = @import("std");
|
|
const nats_build = @import("./nats-c.build.zig");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
const nats = b.addModule("nats", .{
|
|
.root_source_file = b.path("src/nats.zig"),
|
|
});
|
|
|
|
const nats_c = nats_build.nats_c_lib(b, .{
|
|
.name = "nats-c",
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
nats.linkLibrary(nats_c);
|
|
|
|
const tests = b.addTest(.{
|
|
.name = "nats-zig-unit-tests",
|
|
.root_source_file = b.path("tests/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
|
|
tests.root_module.addImport("nats", nats);
|
|
tests.linkLibrary(nats_c);
|
|
|
|
const run_main_tests = b.addRunArtifact(tests);
|
|
const test_step = b.step("test", "Run tests");
|
|
test_step.dependOn(&b.addInstallArtifact(tests, .{}).step);
|
|
test_step.dependOn(&run_main_tests.step);
|
|
|
|
add_examples(b, .{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.nats_module = nats,
|
|
});
|
|
}
|
|
|
|
const ExampleOptions = struct {
|
|
target: std.Build.ResolvedTarget,
|
|
optimize: std.builtin.OptimizeMode,
|
|
nats_module: *std.Build.Module,
|
|
};
|
|
|
|
const Example = struct {
|
|
name: []const u8,
|
|
file: []const u8,
|
|
};
|
|
|
|
const examples = [_]Example{
|
|
.{ .name = "request_reply", .file = "examples/request_reply.zig" },
|
|
.{ .name = "headers", .file = "examples/headers.zig" },
|
|
.{ .name = "pub_bytes", .file = "examples/pub_bytes.zig" },
|
|
};
|
|
|
|
pub fn add_examples(b: *std.Build, options: ExampleOptions) void {
|
|
const example_step = b.step("examples", "build examples");
|
|
|
|
inline for (examples) |example| {
|
|
const ex_exe = b.addExecutable(.{
|
|
.name = example.name,
|
|
.root_source_file = b.path(example.file),
|
|
.target = options.target,
|
|
.optimize = .Debug,
|
|
});
|
|
|
|
ex_exe.root_module.addImport("nats", options.nats_module);
|
|
|
|
const install = b.addInstallArtifact(ex_exe, .{});
|
|
example_step.dependOn(&install.step);
|
|
}
|
|
}
|