Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
38 lines
1.2 KiB
Rust
38 lines
1.2 KiB
Rust
#![allow(clippy::disallowed_methods, reason = "build scripts are exempt")]
|
|
use std::process::Command;
|
|
|
|
fn main() {
|
|
if std::env::var("ZED_UPDATE_EXPLANATION").is_ok() {
|
|
println!(r#"cargo:rustc-cfg=feature="no-bundled-uninstall""#);
|
|
}
|
|
|
|
if cfg!(target_os = "macos") {
|
|
println!("cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET=10.15.7");
|
|
}
|
|
|
|
// Populate git sha environment variable if git is available
|
|
println!("cargo:rerun-if-changed=../../.git/logs/HEAD");
|
|
if let Some(output) = Command::new("git")
|
|
.args(["rev-parse", "HEAD"])
|
|
.output()
|
|
.ok()
|
|
.filter(|output| output.status.success())
|
|
{
|
|
let git_sha = String::from_utf8_lossy(&output.stdout);
|
|
let git_sha = git_sha.trim();
|
|
|
|
println!("cargo:rustc-env=ZED_COMMIT_SHA={git_sha}");
|
|
}
|
|
if let Some(build_identifier) = option_env!("GITHUB_RUN_NUMBER") {
|
|
println!("cargo:rustc-env=ZED_BUILD_ID={build_identifier}");
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
{
|
|
println!("cargo:rerun-if-env-changed=RELEASE_CHANNEL");
|
|
println!("cargo:rerun-if-env-changed=GITHUB_RUN_NUMBER");
|
|
|
|
windows_resources::compile(false).expect("failed to compile Windows resources");
|
|
}
|
|
}
|