feat(win32 gui): rename gui executable to flow-gui

closes #105
This commit is contained in:
CJ van den Berg 2025-01-05 15:31:49 +01:00
parent 9d9372bfe0
commit 0fa1e63af9
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -440,8 +440,10 @@ pub fn build_exe(
},
});
const exe_name = if (gui) "flow-gui" else "flow";
const exe = b.addExecutable(.{
.name = "flow",
.name = exe_name,
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
@ -488,7 +490,7 @@ pub fn build_exe(
run_step.dependOn(&run_cmd.step);
const check_exe = b.addExecutable(.{
.name = "flow",
.name = exe_name,
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,