2022-06-28 12:42:28 +00:00
|
|
|
const std = @import("std");
|
|
|
|
|
2023-04-20 22:00:14 +00:00
|
|
|
pub fn build(b: *std.Build) void {
|
2022-06-28 12:42:28 +00:00
|
|
|
// Standard target options allows the person running `zig build` to choose
|
|
|
|
// what target to build for. Here we do not override the defaults, which
|
|
|
|
// means any target is allowed, and the default is native. Other options
|
|
|
|
// for restricting supported target set are available.
|
|
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
|
|
|
|
// Standard release options allow the person running `zig build` to select
|
|
|
|
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
|
2023-04-20 22:00:14 +00:00
|
|
|
const optimize = b.standardOptimizeOption(.{});
|
2022-06-28 12:42:28 +00:00
|
|
|
|
2023-04-20 22:00:14 +00:00
|
|
|
const exe = b.addExecutable(.{
|
|
|
|
.name = "usg",
|
|
|
|
.root_source_file = .{ .path = "src/main.zig" },
|
|
|
|
.target = target,
|
|
|
|
.optimize = optimize,
|
|
|
|
});
|
2022-06-28 12:42:28 +00:00
|
|
|
|
2023-09-21 14:40:53 +00:00
|
|
|
exe.linkSystemLibrary("raylib");
|
|
|
|
exe.linkSystemLibrary("c");
|
|
|
|
|
2023-04-20 22:00:14 +00:00
|
|
|
b.installArtifact(exe);
|
2022-06-28 12:42:28 +00:00
|
|
|
|
2023-04-20 22:00:14 +00:00
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
2022-06-28 12:42:28 +00:00
|
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
2023-04-20 22:00:14 +00:00
|
|
|
|
|
|
|
// Allow the user to pass arguments to the applecation
|
2022-06-28 12:42:28 +00:00
|
|
|
if (b.args) |args| {
|
|
|
|
run_cmd.addArgs(args);
|
|
|
|
}
|
2023-04-20 22:00:14 +00:00
|
|
|
|
|
|
|
// Create the build step
|
2022-06-28 12:42:28 +00:00
|
|
|
const run_step = b.step("run", "Run the app");
|
|
|
|
run_step.dependOn(&run_cmd.step);
|
|
|
|
}
|