process-launcher-rs/launcher/build.rs
RabbyDevs bcd04b4524 add admin escalation using manifest and winres (#1)
makes it easier to launch program (no more right click run as admin) and also makes it more🧑‍🦼accessible

Co-authored-by: RabbyDevs <67389402+RabbyDevs@users.noreply.github.com>
Reviewed-on: #1
Co-authored-by: RabbyDevs <rabbydevs@gmail.com>
Co-committed-by: RabbyDevs <rabbydevs@gmail.com>
2025-05-16 20:01:17 +00:00

5 lines
No EOL
172 B
Rust

fn main() {
let mut res = winres::WindowsResource::new();
res.set_manifest(include_str!("manifest.xml"));
res.compile().expect("Failed to compile resources");
}