Files
ghostty/src/apprt/gtk/build/info.zig
2026-03-16 18:26:37 -05:00

19 lines
543 B
Zig

const builtin = @import("builtin");
/// Base application ID
pub const base_application_id = "com.mitchellh.ghostty";
/// GTK application ID
pub const application_id = switch (builtin.mode) {
.Debug, .ReleaseSafe => base_application_id ++ "-debug",
.ReleaseFast, .ReleaseSmall => base_application_id,
};
pub const resource_path = "/com/mitchellh/ghostty";
/// GTK object path
pub const object_path = switch (builtin.mode) {
.Debug, .ReleaseSafe => resource_path ++ "_debug",
.ReleaseFast, .ReleaseSmall => resource_path,
};