From ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Tue, 15 Jul 2025 00:19:37 +0200 Subject: Misc: Rename zig project --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.zig') 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, -- cgit 1.4.1