mirror of
https://github.com/ziglang/zig.git
synced 2025-12-14 02:03:08 +00:00
This is just a temp addition until I figure out how to tweak the stage2 test harness to add the ability to test the linker too.
17 lines
459 B
Zig
17 lines
459 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: *Builder) void {
|
|
const mode = b.standardReleaseOptions();
|
|
|
|
const lib = b.addSharedLibrary("a", null, b.version(1, 0, 0));
|
|
lib.setBuildMode(mode);
|
|
lib.addCSourceFile("a.c", &.{});
|
|
|
|
const test_exe = b.addTest("main.zig");
|
|
test_exe.setBuildMode(mode);
|
|
test_exe.linkLibrary(lib);
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&test_exe.step);
|
|
}
|