const Builder = @import("std").build.Builder; pub fn build(b: *Builder) void { const mode = b.standardReleaseOptions(); const exe = b.addExecutable("scritcher", "src/main.zig"); exe.setBuildMode(mode); exe.install(); exe.linkSystemLibrary("lilv-0"); exe.linkSystemLibrary("sndfile"); exe.linkSystemLibrary("c"); exe.linkSystemLibrary("GraphicsMagickWand"); exe.linkSystemLibrary("GraphicsMagick"); exe.addIncludeDir("/usr/include/lilv-0"); exe.addIncludeDir("/usr/include/GraphicsMagick"); const run_cmd = exe.run(); run_cmd.step.dependOn(b.getInstallStep()); const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); }