aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/main_pkg_path/build.zig
blob: c4ac18f967b3ffd5b904bc5d05d86bfc579939dc (plain)
1
2
3
4
5
6
7
8
9
const Builder = @import("std").build.Builder;

pub fn build(b: *Builder) void {
    const test_exe = b.addTest("a/test.zig");
    test_exe.setMainPkgPath(".");

    const test_step = b.step("test", "Test the program");
    test_step.dependOn(&test_exe.step);
}