zpinner/build.zig.zon

24 lines
723 B
Text
Raw Normal View History

2024-05-14 23:09:10 +02:00
.{
.name = "zpinner",
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.0.0",
2024-05-15 17:11:45 +02:00
.minimum_zig_version = "0.12.0",
2024-05-14 23:09:10 +02:00
.dependencies = .{},
.paths = .{
// This makes *all* files, recursively, included in this package. It is generally
// better to explicitly list the files and directories instead, to insure that
// fetching from tarballs, file system paths, and version control all result
// in the same contents hash.
"",
// For example...
//"build.zig",
//"build.zig.zon",
//"src",
//"LICENSE",
//"README.md",
},
}