chore: change wrapper exe name to alcom-setup.exe

This commit is contained in:
anatawa12 2026-04-04 17:04:09 +09:00
commit 02fcb00bb3
No known key found for this signature in database
GPG key ID: 9CA909848B8E4EA6
2 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,10 @@ name = "windows-installer-wrapper"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "alcom-setup"
path = "src/main.rs"
[dependencies]
windows-sys = {
version = "0.61.2",

View file

@ -278,7 +278,7 @@ fn build_wrapper(options: &BuildOptions, libs_dir: &Path, profile: &str) -> Resu
cmd.run_checked("building windows-installer-wrapper")?;
Ok(options.build_dir.join("windows-installer-wrapper.exe"))
Ok(options.build_dir.join("alcom-setup.exe"))
}
fn choose_default_target(host_triple: &str) -> Option<&'static str> {