diff --git a/build.zig.zon b/build.zig.zon index 9b9d954..1782672 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -6,7 +6,7 @@ // // It is redundant to include "zig" in this name because it is already // within the Zig package namespace. - .name = "oc_reimagined", + .name = "neonucleus", // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. @@ -53,20 +53,12 @@ //}, }, - // Specifies the set of files and directories that are included in this package. - // Only files and directories listed here are included in the `hash` that - // is computed for this package. Only files listed here will remain on disk - // when using the zig package manager. As a rule of thumb, one should list - // files required for compilation plus any license(s). - // Paths are relative to the build root. Use the empty string (`""`) to refer to - // the build root itself. - // A directory listed here means that all files within, recursively, are included. .paths = .{ "build.zig", "build.zig.zon", "src", // For example... - //"LICENSE", - //"README.md", + "LICENSE", + "README.md", }, }