2019-03-03 17:35:09 +00:00
|
|
|
const Builder = @import("std").build.Builder;
|
|
|
|
|
|
|
|
pub fn build(b: *Builder) void {
|
2023-01-31 04:39:43 +00:00
|
|
|
const optimize = b.standardOptimizeOption(.{});
|
2019-03-03 17:35:09 +00:00
|
|
|
|
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{});
|
2022-01-24 18:15:32 +00:00
|
|
|
foo.addIncludePath(".");
|
2019-03-03 17:35:09 +00:00
|
|
|
|
2023-01-31 04:39:43 +00:00
|
|
|
const test_exe = b.addTest(.{
|
|
|
|
.root_source_file = .{ .path = "foo.zig" },
|
|
|
|
.optimize = optimize,
|
|
|
|
});
|
2019-03-03 17:35:09 +00:00
|
|
|
test_exe.linkLibrary(foo);
|
2022-01-24 18:15:32 +00:00
|
|
|
test_exe.addIncludePath(".");
|
2019-03-03 17:35:09 +00:00
|
|
|
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
|
|
test_step.dependOn(&test_exe.step);
|
|
|
|
}
|