jetzig/demo/build.zig.zon
Bob Farrell d3a3582136 Implement init command, get rid of old init script/artifacts
Remove old bash script for setting up a new project, do everything in
Zig to make it platform agnostic and give us an easy place to add
scaffolding commands in future.
2024-03-06 22:57:11 +00:00

24 lines
654 B
Zig

.{
.name = "jetzig-demo",
.version = "0.0.0",
.minimum_zig_version = "0.12.0",
.dependencies = .{
.jetzig = .{
.path = "../",
},
},
.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",
},
}