summaryrefslogtreecommitdiff
path: root/scripts/build.rs
blob: e366b4998c62783581301192086c5128fe2c7f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(windows)]
fn main() {
    let mut res = winresource::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() {
    // Tango uses dynamic linking, to allow us to dynamically change between two bench suit at runtime.
    // This is currently not supported on non nightly rust, on windows.
    println!("cargo:rustc-link-arg-benches=-rdynamic");
    println!("cargo:rerun-if-changed=scripts/build.rs");
}