zig-learn/build.zig

13 lines
332 B
Zig
Raw Normal View History

2024-10-22 11:25:16 +00:00
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();
}