-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.zig
53 lines (44 loc) · 1.63 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const std = @import("std");
pub const min_zig_version = std.SemanticVersion{ .major = 0, .minor = 14, .patch = 0, .pre = "dev.1632" };
pub fn build(b: *std.Build) void {
ensureZigVersion() catch return;
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const lib = b.addSharedLibrary(.{
.name = "vszip",
.root_source_file = b.path("src/vszip.zig"),
.target = target,
.optimize = optimize,
});
const vapoursynth_dep = b.dependency("vapoursynth", .{
.target = target,
.optimize = optimize,
});
lib.root_module.addImport("vapoursynth", vapoursynth_dep.module("vapoursynth"));
lib.linkLibC();
if (lib.root_module.optimize == .ReleaseFast) {
lib.root_module.strip = true;
}
b.installArtifact(lib);
}
fn ensureZigVersion() !void {
var installed_ver = @import("builtin").zig_version;
installed_ver.build = null;
if (installed_ver.order(min_zig_version) == .lt) {
std.log.err("\n" ++
\\---------------------------------------------------------------------------
\\
\\Installed Zig compiler version is too old.
\\
\\Min. required version: {any}
\\Installed version: {any}
\\
\\Please install newer version and try again.
\\Latest version can be found here: https://ziglang.org/download/
\\
\\---------------------------------------------------------------------------
\\
, .{ min_zig_version, installed_ver });
return error.ZigIsTooOld;
}
}