mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-14 22:12:07 +01:00
30 lines
752 B
Zig
30 lines
752 B
Zig
|
const std = @import("std");
|
||
|
|
||
|
pub fn build(b: *std.Build) void {
|
||
|
const target = b.standardTargetOptions(.{});
|
||
|
const optimize = b.standardOptimizeOption(.{});
|
||
|
|
||
|
const exe = b.addExecutable(.{
|
||
|
.name = "withjava",
|
||
|
.root_source_file = .{ .path = "src/main.zig" },
|
||
|
.target = target,
|
||
|
.optimize = optimize,
|
||
|
});
|
||
|
|
||
|
exe.strip = switch (optimize) {
|
||
|
.ReleaseSafe, .Debug => false,
|
||
|
.ReleaseFast, .ReleaseSmall => true,
|
||
|
};
|
||
|
|
||
|
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);
|
||
|
}
|