2023-01-31 07:19:51 +00:00
|
|
|
const std = @import("std");
|
2019-03-03 17:35:09 +00:00
|
|
|
|
2023-01-31 07:19:51 +00:00
|
|
|
pub fn build(b: *std.Build) void {
|
2023-03-08 07:16:16 +00:00
|
|
|
const test_step = b.step("test", "Test it");
|
|
|
|
b.default_step = test_step;
|
|
|
|
|
|
|
|
const optimize: std.builtin.OptimizeMode = .Debug;
|
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
|
|
|
|
|
|
|
test_step.dependOn(&test_exe.step);
|
|
|
|
}
|