zig/test/standalone/static_c_lib/build.zig

26 lines
637 B
Zig
Raw Normal View History

const std = @import("std");
pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it");
b.default_step = test_step;
const optimize: std.builtin.OptimizeMode = .Debug;
2023-01-31 04:39:43 +00:00
const foo = b.addStaticLibrary(.{
.name = "foo",
.optimize = optimize,
.target = .{},
});
2019-11-30 04:04:19 +00:00
foo.addCSourceFile("foo.c", &[_][]const u8{});
foo.addIncludePath(".");
2023-01-31 04:39:43 +00:00
const test_exe = b.addTest(.{
.root_source_file = .{ .path = "foo.zig" },
.optimize = optimize,
});
test_exe.linkLibrary(foo);
test_exe.addIncludePath(".");
test_step.dependOn(&test_exe.step);
}