blob: 438ce371ac5913b8c0488d638b806536d838051a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
fn main() {
println!("cargo::rerun-if-changed=fonts/icons.toml");
iced_fontello::build("fonts/icons.toml").expect("Build icons font");
#[cfg(windows)]
{
embed_resource::compile(
"assets/windows/iced_builder.rc",
embed_resource::NONE,
);
windows_exe_info::versioninfo::link_cargo_env();
}
}
|