mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
29 lines
782 B
Zig
29 lines
782 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const CrossTarget = std.zig.CrossTarget;
|
|
|
|
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;
|
|
const target: std.zig.CrossTarget = .{};
|
|
|
|
const exe = b.addExecutable(.{
|
|
.name = "main",
|
|
.root_source_file = .{ .path = "main.zig" },
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
|
|
const c_sources = [_][]const u8{
|
|
"test.c",
|
|
};
|
|
exe.addCSourceFiles(&c_sources, &.{});
|
|
exe.linkLibC();
|
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
|
run_cmd.expectExitCode(0);
|
|
run_cmd.skip_foreign_checks = true;
|
|
test_step.dependOn(&run_cmd.step);
|
|
}
|