Add build.zig.zon
This commit is contained in:
23
build.zig.zon
Normal file
23
build.zig.zon
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
.{
|
||||||
|
// Basic package information
|
||||||
|
.name = "pi-finder",
|
||||||
|
.version = "0.1.0",
|
||||||
|
|
||||||
|
// Minimum Zig version required for this package
|
||||||
|
.minimum_zig_version = "0.14.1",
|
||||||
|
|
||||||
|
// Package dependencies (currently none, but could be added later)
|
||||||
|
.dependencies = .{},
|
||||||
|
|
||||||
|
// Package metadata
|
||||||
|
.paths = .{
|
||||||
|
// Include all important project files
|
||||||
|
"build.zig",
|
||||||
|
"build.zig.zon",
|
||||||
|
"src",
|
||||||
|
"README.md",
|
||||||
|
"LICENSE",
|
||||||
|
// Note: we don't include the data directory directly in the package
|
||||||
|
// as it contains very large files
|
||||||
|
},
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user