summaryrefslogtreecommitdiff
path: root/iced_builder/build.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--iced_builder/build.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/iced_builder/build.rs b/iced_builder/build.rs
index 54edc54..438ce37 100644
--- a/iced_builder/build.rs
+++ b/iced_builder/build.rs
@@ -3,7 +3,10 @@ fn main() {
iced_fontello::build("fonts/icons.toml").expect("Build icons font");
#[cfg(windows)]
{
- embed_resource::compile("assets/windows/iced_builder.rc", embed_resource::NONE);
+ embed_resource::compile(
+ "assets/windows/iced_builder.rc",
+ embed_resource::NONE,
+ );
windows_exe_info::versioninfo::link_cargo_env();
}
}