bootit 0.2.2

Lightweight Boot Selector
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(target_os = "windows")]
fn main() {
    let mut res = winres::WindowsResource::new();
    res.set_manifest(include_str!("app.manifest"));
    if let Err(error) = res.compile() {
        eprint!("{error}");
        std::process::exit(1);
    }
}

#[cfg(not(target_os = "windows"))]
fn main() {}