summaryrefslogtreecommitdiff
path: root/iced_builder/build.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2024-12-24 00:44:27 +0100
committerpml68 <contact@pml68.dev>2024-12-24 00:44:36 +0100
commit699e380dd2d6ebf61849dba8c225b512e9fa816a (patch)
treec3f9e75c840ba4256917d705f565022274041213 /iced_builder/build.rs
parentrefactor: apply a few clippy suggestions (diff)
downloadiced-builder-699e380dd2d6ebf61849dba8c225b512e9fa816a.tar.gz
style: add `max_width=80` to rustfmt.toml
Diffstat (limited to 'iced_builder/build.rs')
-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();
}
}