use std::env;
use copy_to_output::copy_to_output;

fn main() {
    // Re-runs the script if any files in res are changed
    println!("cargo:rerun-if-changed=res/*");
    copy_to_output("res", &env::var("PROFILE").unwrap()).expect("Could not copy");
}
