23 lines
615 B
Zig
23 lines
615 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.build.Builder) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const mode = b.standardReleaseOptions();
|
|
|
|
const exe = b.addExecutable("UroAvatarGenerator", null);
|
|
exe.addCSourceFile("src/main.cpp", &.{"-std=c++20"});
|
|
exe.setTarget(target);
|
|
exe.setBuildMode(mode);
|
|
exe.linkLibCpp();
|
|
exe.install();
|
|
|
|
const run_cmd = exe.run();
|
|
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);
|
|
}
|