mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Merge 5ec8b49f8a
into db187c4870
This commit is contained in:
commit
12a45bde91
1 changed files with 56 additions and 0 deletions
|
@ -16,6 +16,7 @@ mod windows_rc {
|
||||||
use std::io::prelude::Write;
|
use std::io::prelude::Write;
|
||||||
use std::{env, io, path::Path, path::PathBuf, process};
|
use std::{env, io, path::Path, path::PathBuf, process};
|
||||||
|
|
||||||
|
#[cfg(target_env = "msvc")]
|
||||||
pub(crate) fn link_icon_in_windows_exe(icon_path: &str) {
|
pub(crate) fn link_icon_in_windows_exe(icon_path: &str) {
|
||||||
let rc_exe = find_rc_exe().expect("Windows SDK is to be installed along with MSVC");
|
let rc_exe = find_rc_exe().expect("Windows SDK is to be installed along with MSVC");
|
||||||
|
|
||||||
|
@ -32,6 +33,7 @@ mod windows_rc {
|
||||||
println!("cargo:rustc-link-lib=dylib=resource");
|
println!("cargo:rustc-link-lib=dylib=resource");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(target_env = "msvc")]
|
||||||
fn compile_with_toolkit_msvc(rc_exe: PathBuf, output: PathBuf, input: PathBuf) {
|
fn compile_with_toolkit_msvc(rc_exe: PathBuf, output: PathBuf, input: PathBuf) {
|
||||||
let mut command = process::Command::new(rc_exe);
|
let mut command = process::Command::new(rc_exe);
|
||||||
let command = command.arg(format!(
|
let command = command.arg(format!(
|
||||||
|
@ -56,6 +58,7 @@ mod windows_rc {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(target_env = "msvc")]
|
||||||
fn find_rc_exe() -> io::Result<PathBuf> {
|
fn find_rc_exe() -> io::Result<PathBuf> {
|
||||||
let find_reg_key = process::Command::new("reg")
|
let find_reg_key = process::Command::new("reg")
|
||||||
.arg("query")
|
.arg("query")
|
||||||
|
@ -144,6 +147,59 @@ mod windows_rc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(target_env = "gnu")]
|
||||||
|
pub(crate) fn link_icon_in_windows_exe(icon_path: &str) {
|
||||||
|
let windres_exe = PathBuf::from(r"windres.exe");
|
||||||
|
if !check_if_exe_works(&windres_exe) {
|
||||||
|
panic!("Could not locate windres.exe binary from gnu toolkit in the PATH environment variable.")
|
||||||
|
};
|
||||||
|
|
||||||
|
let output = env::var("OUT_DIR").expect("Env var OUT_DIR should have been set by compiler");
|
||||||
|
let output_dir = PathBuf::from(output);
|
||||||
|
|
||||||
|
let rc_path = output_dir.join("resource.rc");
|
||||||
|
write_resource_file(&rc_path, icon_path).unwrap();
|
||||||
|
|
||||||
|
let resource_file = PathBuf::from(&output_dir).join("resource.lib");
|
||||||
|
compile_with_toolkit_gnu(windres_exe, resource_file, rc_path);
|
||||||
|
|
||||||
|
println!("cargo:rustc-link-search=native={}", output_dir.display());
|
||||||
|
println!("cargo:rustc-link-lib=dylib=resource");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(target_env = "gnu")]
|
||||||
|
fn compile_with_toolkit_gnu(windres_exe: PathBuf, output: PathBuf, input: PathBuf) {
|
||||||
|
let mut command = process::Command::new(windres_exe);
|
||||||
|
let command = command.arg(format!(
|
||||||
|
"-I {}",
|
||||||
|
env::var("CARGO_MANIFEST_DIR")
|
||||||
|
.expect("CARGO_MANIFEST_DIR should have been set by Cargo")
|
||||||
|
));
|
||||||
|
|
||||||
|
let status = command
|
||||||
|
.arg(format!("--output={}", output.display()))
|
||||||
|
.arg(format!("{}", input.display()))
|
||||||
|
.output()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
println!(
|
||||||
|
"RC Output:\n{}\n------",
|
||||||
|
String::from_utf8_lossy(&status.stdout)
|
||||||
|
);
|
||||||
|
println!(
|
||||||
|
"RC Error:\n{}\n------",
|
||||||
|
String::from_utf8_lossy(&status.stderr)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(target_env = "gnu")]
|
||||||
|
fn check_if_exe_works(exe: &PathBuf) -> bool {
|
||||||
|
process::Command::new(exe)
|
||||||
|
.arg("--version") // Optional: You can pass an argument to check if the command is working
|
||||||
|
.output()
|
||||||
|
.is_okay()
|
||||||
|
}
|
||||||
|
|
||||||
fn write_resource_file(rc_path: &Path, icon_path: &str) -> io::Result<()> {
|
fn write_resource_file(rc_path: &Path, icon_path: &str) -> io::Result<()> {
|
||||||
let mut f = std::fs::File::create(rc_path)?;
|
let mut f = std::fs::File::create(rc_path)?;
|
||||||
writeln!(f, "{} ICON \"{}\"", 1, icon_path)?;
|
writeln!(f, "{} ICON \"{}\"", 1, icon_path)?;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue