fn main() { println!("cargo::rustc-check-cfg=cfg(mobile)"); // Ensure dist folder exists for tauri::generate_context!() macro // This allows running cargo test without building the frontend first ensure_dist_folder_exists(); // Generate tray icon PNGs from SVG (macOS template icon format) generate_tray_icons(); #[cfg(target_os = "macos")] { println!("cargo:rustc-link-lib=framework=CoreFoundation"); println!("cargo:rustc-link-lib=framework=CoreServices"); } // Inject build version based on environment variables set by CI if let Ok(build_tag) = std::env::var("BUILD_TAG") { // Custom BUILD_TAG takes highest priority (used for nightly builds) println!("cargo:rustc-env=BUILD_VERSION={build_tag}"); } else if let Ok(tag_name) = std::env::var("GITHUB_REF_NAME") { // This is set by GitHub Actions to the tag name (e.g., "v1.0.0") println!("cargo:rustc-env=BUILD_VERSION={tag_name}"); } else if std::env::var("STABLE_RELEASE").is_ok() { // Fallback for stable releases - use CARGO_PKG_VERSION with 'v' prefix let version = std::env::var("CARGO_PKG_VERSION").unwrap_or_else(|_| "0.1.0".to_string()); println!("cargo:rustc-env=BUILD_VERSION=v{version}"); } else if let Ok(commit_hash) = std::env::var("GITHUB_SHA") { // For nightly builds, use timestamp format or fallback to commit hash let short_hash = &commit_hash[0..7.min(commit_hash.len())]; println!("cargo:rustc-env=BUILD_VERSION=nightly-{short_hash}"); } else { // Development build fallback let version = std::env::var("CARGO_PKG_VERSION").unwrap_or_else(|_| "0.1.0".to_string()); println!("cargo:rustc-env=BUILD_VERSION=dev-{version}"); } // Inject vault password at build time if let Ok(vault_password) = std::env::var("DONUT_BROWSER_VAULT_PASSWORD") { println!("cargo:rustc-env=DONUT_BROWSER_VAULT_PASSWORD={vault_password}"); } else { // Use default password if environment variable is not set println!("cargo:rustc-env=DONUT_BROWSER_VAULT_PASSWORD=donutbrowser-api-vault-password"); } // Tell Cargo to rebuild if the proxy binary source changes println!("cargo:rerun-if-changed=src/bin/proxy_server.rs"); println!("cargo:rerun-if-changed=src/proxy_server.rs"); println!("cargo:rerun-if-changed=src/proxy_runner.rs"); println!("cargo:rerun-if-changed=src/proxy_storage.rs"); // Tell Cargo to rebuild when binaries directory contents change // This ensures tauri_build is re-run after sidecar binaries are copied println!("cargo:rerun-if-changed=binaries"); // Only run tauri_build if all external binaries exist // This allows building donut-proxy sidecar without the other binaries present if external_binaries_exist() { tauri_build::build() } else { println!("cargo:warning=Skipping tauri_build: external binaries not found. This is expected when building sidecar binaries."); } } fn external_binaries_exist() -> bool { use std::env; use std::path::PathBuf; let manifest_dir = match env::var("CARGO_MANIFEST_DIR") { Ok(dir) => dir, Err(_) => return false, }; let target = match env::var("TARGET") { Ok(t) => t, Err(_) => return false, }; let binaries_dir = PathBuf::from(&manifest_dir).join("binaries"); // Check for all required external binaries (must match tauri.conf.json externalBin) let (donut_proxy_name, donut_daemon_name) = if target.contains("windows") { ( format!("donut-proxy-{}.exe", target), format!("donut-daemon-{}.exe", target), ) } else { ( format!("donut-proxy-{}", target), format!("donut-daemon-{}", target), ) }; binaries_dir.join(&donut_proxy_name).exists() && binaries_dir.join(&donut_daemon_name).exists() } fn ensure_dist_folder_exists() { use std::fs; use std::path::PathBuf; let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); let dist_dir = PathBuf::from(&manifest_dir).join("..").join("dist"); if !dist_dir.exists() { fs::create_dir_all(&dist_dir).expect("Failed to create dist directory"); let index_path = dist_dir.join("index.html"); fs::write( &index_path, "", ) .expect("Failed to create stub index.html"); println!( "cargo:warning=Created stub dist folder for compilation. Run 'pnpm build' for full frontend." ); } println!("cargo:rerun-if-changed=../dist"); } fn generate_tray_icons() { use resvg::tiny_skia::{Pixmap, Transform}; use resvg::usvg::{Options, Tree}; use std::fs; use std::path::PathBuf; let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); let icons_dir = PathBuf::from(&manifest_dir).join("icons"); let svg_path = icons_dir.join("tray-icon.svg"); println!("cargo:rerun-if-changed=icons/tray-icon.svg"); if !svg_path.exists() { println!("cargo:warning=tray-icon.svg not found, skipping tray icon generation"); return; } let svg_data = fs::read(&svg_path).expect("Failed to read tray-icon.svg"); let tree = Tree::from_data(&svg_data, &Options::default()).expect("Failed to parse SVG"); // Generate template icons at different sizes for macOS menu bar // 22x22 is standard, 44x44 is retina (@2x) let sizes = [(22, "tray-icon-22.png"), (44, "tray-icon-44.png")]; for (size, filename) in sizes { let mut pixmap = Pixmap::new(size, size).expect("Failed to create pixmap"); let svg_size = tree.size(); let scale = size as f32 / svg_size.width().max(svg_size.height()); let transform = Transform::from_scale(scale, scale); resvg::render(&tree, transform, &mut pixmap.as_mut()); // Convert to template icon format: black silhouette with alpha channel // macOS will automatically handle light/dark mode by inverting the icon // For template icons: RGB should be 0,0,0 (black) and alpha controls visibility let data = pixmap.data_mut(); for pixel in data.chunks_exact_mut(4) { // Keep the original alpha (shows where icon content is) // but make the color black for template icon format pixel[0] = 0; // R pixel[1] = 0; // G pixel[2] = 0; // B // pixel[3] (alpha) stays as-is } let output_path = icons_dir.join(filename); pixmap .save_png(&output_path) .expect("Failed to save tray icon PNG"); } }