diff options
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 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, |