forked from vercel-labs/native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
33 lines (33 loc) · 977 Bytes
/
Copy pathbuild.zig.zon
File metadata and controls
33 lines (33 loc) · 977 Bytes
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
.{
.name = .native_sdk,
.fingerprint = 0xc309966142f33087,
.version = "0.1.0",
.minimum_zig_version = "0.16.0",
// No dependencies. The terminal emulator (libghostty-vt) is
// deliberately NOT pinned here: a pin in this file is materialized
// into every consumer's package directory even when lazy and
// unused. Apps that want live `<terminal>` sessions pin it in their
// own build.zig.zon and ask for it with
// `addAppArtifacts(.{ .terminal_sessions = true })` — see
// examples/workbench, which also owns that path's test coverage.
.dependencies = .{},
.paths = .{
"README.md",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md",
"app.zon",
"assets",
"build",
"build.zig",
"build.zig.zon",
"docs",
"examples",
"packages",
"src",
"templates",
"tests",
"third_party/sqlite",
"tools",
},
}