-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
21 lines (21 loc) · 800 Bytes
/
build.zig.zon
File metadata and controls
21 lines (21 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.{
.name = "box2d.zig",
// Version number is the same as Box2D, except the minor version is multiplied by 100.
// If there is a breaking change in the binding (not Box2D), it is incremented by one until the next Box2D version.
// This means "3.100.0" is the same version of Box2D as "3.101.0".
// This is a potential update sequence:
// - 3.100.0
// - 3.200.0
// - 3.201.0
// - 3.202.0
// - 3.300.0
.version = "3.0.0", // For some reason, Zig does not like "3.000.0", so a single (boring) digit must be used.
// This is the minimal set of files required to use as a dependency in a build.zig.zon. This is entirely untested!
.paths = .{
"box2c",
"src",
"build.zig",
"build.zig.zon",
},
.dependencies = .{},
}