generated from PhantomUIx/template-module
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.zig
80 lines (67 loc) · 2.4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const std = @import("std");
const Phantom = @import("phantom");
pub const phantomModule = Phantom.Sdk.PhantomModule{
.provides = .{
.platforms = .{"web"},
},
};
pub const phantomPlatform = struct {
pub const web = @import("src/phantom/platform/backends/web/sdk.zig");
};
pub fn build(b: *std.Build) !void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const no_importer = b.option(bool, "no-importer", "disables the import system (not recommended)") orelse false;
const no_docs = b.option(bool, "no-docs", "skip installing documentation") orelse false;
const no_tests = b.option(bool, "no-tests", "skip generating tests") orelse false;
const phantom = b.dependency("phantom", .{
.target = target,
.optimize = optimize,
.@"no-importer" = no_importer,
.@"no-docs" = no_docs,
.@"import-module" = try Phantom.Sdk.ModuleImport.init(&.{}, b.pathFromRoot("src"), b.allocator),
});
_ = b.addModule("phantom.platform.web", .{
.root_source_file = .{ .path = b.pathFromRoot("src/phantom.zig") },
.imports = &.{
.{
.name = "phantom",
.module = phantom.module("phantom"),
},
},
});
const sdk = try phantomPlatform.web.create(b, phantom.module("phantom"));
defer sdk.deinit();
const pkg_example = sdk.addPackage(.{
.id = "dev.phantomui.example",
.name = "example",
.root_module = .{
.root_source_file = .{
.path = b.pathFromRoot("src/example.zig"),
},
.target = target,
.optimize = optimize,
},
.kind = .application,
.version = .{
.major = 0,
.minor = 1,
.patch = 0,
},
});
sdk.installPackage(pkg_example);
if (!no_tests) {
const step_test = b.step("test", "Run all unit tests");
const unit_tests = phantom.artifact("test");
const run_unit_tests = b.addRunArtifact(unit_tests);
step_test.dependOn(&run_unit_tests.step);
if (!no_docs) {
const docs = b.addInstallDirectory(.{
.source_dir = unit_tests.getEmittedDocs(),
.install_dir = .prefix,
.install_subdir = "docs",
});
b.getInstallStep().dependOn(&docs.step);
}
}
}