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,
|
2024-06-13 13:00:22 +01:00
|
|
|
.target = b.graph.host,
|
2023-01-31 04:39:43 +00:00
|
|
|
});
|
2024-04-11 22:02:47 +01:00
|
|
|
foo.addCSourceFile(.{ .file = b.path("foo.c"), .flags = &[_][]const u8{} });
|
|
|
|
foo.addIncludePath(b.path("."));
|
2019-03-03 17:35:09 +00:00
|
|
|
|
2023-01-31 04:39:43 +00:00
|
|
|
const test_exe = b.addTest(.{
|
2024-04-11 22:02:47 +01:00
|
|
|
.root_source_file = b.path("foo.zig"),
|
2023-01-31 04:39:43 +00:00
|
|
|
.optimize = optimize,
|
|
|
|
});
|
2019-03-03 17:35:09 +00:00
|
|
|
test_exe.linkLibrary(foo);
|
2024-04-11 22:02:47 +01:00
|
|
|
test_exe.addIncludePath(b.path("."));
|
2019-03-03 17:35:09 +00:00
|
|
|
|
2023-04-11 01:05:09 +01:00
|
|
|
test_step.dependOn(&b.addRunArtifact(test_exe).step);
|
2019-03-03 17:35:09 +00:00
|
|
|
}
|