repos / zmx

session persistence for terminal processes
git clone https://github.com/neurosnap/zmx.git

commit
31205d2
parent
06415e4
author
Eric Bower
date
2025-11-27 09:31:01 -0500 EST
chore: cleanup build files
2 files changed,  +1, -11
M build.zig
+1, -7
 1@@ -25,12 +25,6 @@ pub fn build(b: *std.Build) void {
 2         );
 3     }
 4 
 5-    const toml_dep = b.dependency("toml", .{
 6-        .target = target,
 7-        .optimize = optimize,
 8-    });
 9-    exe_mod.addImport("toml", toml_dep.module("toml"));
10-
11     // Exe
12     const exe = b.addExecutable(.{
13         .name = "zmx",
14@@ -66,7 +60,7 @@ pub fn build(b: *std.Build) void {
15     // As you can see we are re-defining the same executable but
16     // we're binding it to a dedicated build step.
17     const exe_check = b.addExecutable(.{
18-        .name = "foo",
19+        .name = "zmx",
20         .root_module = exe_mod,
21     });
22     // There is no `b.installArtifact(exe_check);` here.
M build.zig.zon
+0, -4
 1@@ -36,10 +36,6 @@
 2             .url = "git+https://github.com/ghostty-org/ghostty.git?ref=HEAD#42a38ff672fe0cbbb8588380058c91ac16ed9069",
 3             .hash = "ghostty-1.2.1-5UdBC-7EVAMgwHLhtsdeH4rgcZ7WlagXZ1QXN9bRKJ5s",
 4         },
 5-        .toml = .{
 6-            .url = "git+https://github.com/sam701/zig-toml#3aaeb0bf14935eabae118196f7949b404a42f8ea",
 7-            .hash = "toml-0.3.0-bV14BTd8AQA-wZERtB3dvRE3eSZ-m48AyXFUGkZ_Tm3d",
 8-        },
 9     },
10     .paths = .{
11         "build.zig",