scritcher/build.zig

31 lines
859 B
Zig
Raw Normal View History

2019-07-05 19:59:45 +00:00
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();
2019-07-07 05:26:05 +00:00
exe.linkSystemLibrary("lilv-0");
exe.linkSystemLibrary("sndfile");
exe.linkSystemLibrary("c");
2019-07-22 22:28:55 +00:00
// magick libraries
exe.linkSystemLibrary("MagickWand-7.Q16HDRI");
exe.linkSystemLibrary("MagickCore-7.Q16HDRI");
//exe.addArgs([_]u8{
// "-DMAGICKCORE_HDRI_ENABLE=1",
// "-DMAGICKCORE_QUANTUM_DEPTH=16",
//});
2019-07-07 05:26:05 +00:00
exe.addIncludeDir("/usr/include/lilv-0");
2019-07-22 22:28:55 +00:00
exe.addIncludeDir("/usr/include/ImageMagick-7");
2019-07-07 05:26:05 +00:00
2019-07-05 19:59:45 +00:00
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);
}