-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.zig
40 lines (35 loc) · 1.17 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
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const spice_dep = b.dependency("spice", .{});
const spice_mod = spice_dep.module("spice");
// Server executable
const server = b.addExecutable(.{
.name = "grpc-server",
.root_source_file = .{ .path = "src/server.zig" },
.target = target,
.optimize = optimize,
});
server.addModule("spice", spice_mod);
b.installArtifact(server);
// Client executable
const client = b.addExecutable(.{
.name = "grpc-client",
.root_source_file = .{ .path = "src/client.zig" },
.target = target,
.optimize = optimize,
});
client.addModule("spice", spice_mod);
b.installArtifact(client);
// Tests
const tests = b.addTest(.{
.root_source_file = .{ .path = "src/tests.zig" },
.target = target,
.optimize = optimize,
});
tests.addModule("spice", spice_mod);
const run_tests = b.addRunArtifact(tests);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&run_tests.step);
}