simp 3.5.0

The simple image manipulation program
use std::{env, process::Command};

#[cfg(target_os = "windows")]
use winres::WindowsResource;

#[cfg(target_os = "windows")]
const MANIFEST_CONTENT: &str = r#"
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <description>simp comctl32 manifest</description> 
        <dependency>
            <dependentAssembly>
                <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" /> 
            </dependentAssembly>
        </dependency>
    </assembly>
"#;

#[cfg(target_os = "windows")]
fn compile_icon() {
    let mut res = WindowsResource::new();
    res.set_manifest(MANIFEST_CONTENT);
    res.set_language(winapi::um::winnt::MAKELANGID(
        winapi::um::winnt::LANG_ENGLISH,
        winapi::um::winnt::SUBLANG_ENGLISH_US,
    ));
    res.set_icon("icon.ico");
    res.compile().unwrap();
}

fn main() -> std::io::Result<()> {
    #[cfg(target_os = "windows")]
    compile_icon();

    let output = Command::new("git")
        .args(["rev-parse", "HEAD"])
        .output()
        .unwrap();
    let git_hash = String::from_utf8(output.stdout).unwrap();
    println!("cargo:rustc-env=GIT_HASH={git_hash}");

    {
        println!("cargo:rerun-if-changed=Cargo.toml");

        Command::new("cargo").args(["about", "init"]).spawn()?;

        let out_dir = env::var("OUT_DIR").unwrap();
        let child = Command::new("cargo")
            .args([
                "about",
                "generate",
                "about.hbs",
                "-o",
                &format!("{out_dir}/license.html"),
            ])
            .spawn()?;
        let exit_status = child.wait_with_output()?.status;
        assert!(exit_status.success());
    }

    Ok(())
}