summaryrefslogtreecommitdiff
path: root/build.rs
blob: 5eefb369569a4517e48dc70e336dbd834092ec0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(windows)]
fn main() {
    let mut res = winres::WindowsResource::new();
    res.set("ProductName", "Nushell");
    res.set("FileDescription", "Nushell");
    res.set("LegalCopyright", "Copyright (C) 2022");
    res.set_icon("assets/nu_logo.ico");
    res.compile()
        .expect("Failed to run the Windows resource compiler (rc.exe)");
}

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