diff options
| -rw-r--r-- | build.zig | 4 | ||||
| -rw-r--r-- | build.zig.zon | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build.zig b/build.zig index 780c0e2..084e328 100644 --- a/build.zig +++ b/build.zig @@ -53,7 +53,7 @@ pub fn build(b: *std.Build) !void { // This creates another `std.Build.Step.Compile`, but this one builds an executable // rather than a static library. const exe = b.addExecutable(.{ - .name = "interpreter", + .name = "pry-lang", .root_module = exe_mod, }); @@ -64,7 +64,7 @@ pub fn build(b: *std.Build) !void { // This is needed for better lsp errors const exe_check = b.addExecutable(.{ - .name = "interpreter-lsp", + .name = "pry-lang-lsp", .root_source_file = b.path("src/main.zig"), .root_module = exe_mod, .optimize = optimize, diff --git a/build.zig.zon b/build.zig.zon index 3e45422..ec1df76 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -6,9 +6,9 @@ // // It is redundant to include "zig" in this name because it is already // within the Zig package namespace. - .name = .interpreter, + .name = .pry_lang, - .fingerprint = 0xb03226b7e4393345, + .fingerprint = 0x34a6d0963e3b7b4d, // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. |