24 lines
654 B
Zig
24 lines
654 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const exe = b.addExecutable(.{
|
|
.name = "callingc",
|
|
.root_source_file = b.path("src/callingc.zig"),
|
|
.target = b.graph.host,
|
|
.optimize = b.standardOptimizeOption(.{}),
|
|
});
|
|
exe.addIncludePath(b.path("c-src"));
|
|
exe.addCSourceFile(.{ .file = b.path("c-src/callingc.c") });
|
|
b.installArtifact(exe);
|
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
|
|
if (b.args) |args| {
|
|
run_cmd.addArgs(args);
|
|
}
|
|
|
|
const run_step = b.step("run", "run the app");
|
|
run_step.dependOn(&run_cmd.step);
|
|
}
|