-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig
52 lines (47 loc) · 1.52 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
const std = @import("std");
const Build = std.Build;
const ResolvedTarget = Build.ResolvedTarget;
const OptimizeMode = std.builtin.OptimizeMode;
pub fn build(b: *Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
// get c library
const lmdb_dep = b.dependency("lmdb", .{});
const lmdb_path = lmdb_dep.path("libraries/liblmdb");
// expose c library as zig library
const translate_c = b.addTranslateC(.{
.root_source_file = lmdb_path.path(b, "lmdb.h"),
.target = target,
.optimize = optimize,
});
const mod = b.addModule("lmdb", .{
.root_source_file = translate_c.getOutput(),
.target = target,
.optimize = optimize,
.link_libc = true,
});
// build c library
const liblmdb_a = b.addStaticLibrary(.{
.name = "lmdb",
.target = target,
.optimize = optimize,
});
liblmdb_a.linkLibC();
liblmdb_a.addIncludePath(lmdb_path);
liblmdb_a.addCSourceFiles(.{
.root = lmdb_path,
.files = &.{ "mdb.c", "midl.c" },
});
b.installArtifact(liblmdb_a);
mod.addIncludePath(lmdb_path);
mod.linkLibrary(liblmdb_a);
// test c library in zig
const test_step = b.step("test", "Run tests");
const tests = b.addTest(.{
.target = target,
.optimize = optimize,
.root_source_file = b.path("test.zig"),
});
tests.root_module.addImport("lmdb", mod);
test_step.dependOn(&b.addRunArtifact(tests).step);
}