13 lines
332 B
Zig
13 lines
332 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const exe = b.addExecutable(.{
|
|
.name = "sadfasdf",
|
|
.root_source_file = b.path("main.zig"),
|
|
.target = b.standardTargetOptions(.{}),
|
|
.optimize = b.standardOptimizeOption(.{}),
|
|
});
|
|
b.installArtifact(exe);
|
|
exe.linkLibC();
|
|
}
|