mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
19 lines
504 B
Zig
19 lines
504 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", &.{});
|
|
lib.linkLibC();
|
|
|
|
const test_exe = b.addTest("main.zig");
|
|
test_exe.setBuildMode(mode);
|
|
test_exe.linkLibrary(lib);
|
|
test_exe.linkLibC();
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&test_exe.step);
|
|
}
|