diff options
| author | Baitinq <[email protected]> | 2025-07-15 00:19:37 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-07-15 00:19:37 +0200 |
| commit | ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4 (patch) | |
| tree | 6ebbe490f4ce7ff4c692f50b9d83d93bba34267c /build.zig | |
| parent | Boostrap: Add todos (diff) | |
| download | pry-lang-ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4.tar.gz pry-lang-ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4.tar.bz2 pry-lang-ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4.zip | |
Misc: Rename zig project
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, |