aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/dependencyFromBuildZig/other/build.zig
blob: 7aac0387f903b4782901df25ccc47535ca5f0f50 (plain)
1
2
3
4
5
6
7
const std = @import("std");

pub fn build(b: *std.Build) void {
    _ = b.addModule("add", .{
        .root_source_file = b.path("add.add.zig"),
    });
}