summaryrefslogtreecommitdiff
path: root/build.zig
blob: 6415fe4ae6b2abc099ed871aac8d7aca4d67ce2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const std = @import("std");

pub fn build(b: *std.Build) void {
    const target = b.standardTargetOptions(.{});
    const optimize = b.standardOptimizeOption(.{.preferred_optimize_mode = .ReleaseSafe});

    const lib = b.addLibrary(.{
        .name = "sitter",
        .root_module = b.createModule(.{
            .root_source_file = b.path("src/root.zig"),
            .target = target,
            .optimize = optimize,
        }),
    });

    // const funczmod = b.dependency("funcz", .{
    //     .target = target,
    // }).module("funcz");
    // lib.root_module.addImport("funcz", funczmod);

    b.installArtifact(lib);
    const test_step = b.step("test", "Run unit tests");

    for ([_][]const u8{
        "src/root.zig",
        "src/iterator.zig",
    }) |file|
        unit_test(b,target,optimize,test_step,file);
}

fn unit_test(
    b: *std.Build,
    target: std.Build.ResolvedTarget,
    optimize: std.builtin.OptimizeMode,
    test_step: *std.Build.Step,
    fname: []const u8,
) void {
    const unit = b.addTest(.{
        .root_module = b.createModule(.{
            .root_source_file = b.path(fname),
            .target = target,
            .optimize = optimize,
        }),
        .test_runner = .{ .path = b.path("test_runner.zig"), .mode = .simple },
    });

    // const funczmod = b.dependency("funcz", .{
    //     .target = target,
    // }).module("funcz");
    // unit.root_module.addImport("funcz", funczmod);

    const unit_tests = b.addRunArtifact(unit);
    test_step.dependOn(&unit_tests.step);
}