summaryrefslogtreecommitdiff
path: root/iced_builder/build.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.me>2024-10-30 03:00:17 +0100
committerpml68 <contact@pml68.me>2024-10-30 03:00:17 +0100
commit87e745b8e60225a789b51d5011fa620051c4cfbe (patch)
tree6bf3cede25ee428939500038439508415d636f45 /iced_builder/build.rs
parentfeat: implement very basic playground (diff)
downloadiced-builder-87e745b8e60225a789b51d5011fa620051c4cfbe.tar.gz
feat: add error dialogs, windows manifest
Diffstat (limited to 'iced_builder/build.rs')
-rw-r--r--iced_builder/build.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/iced_builder/build.rs b/iced_builder/build.rs
new file mode 100644
index 0000000..75261f8
--- /dev/null
+++ b/iced_builder/build.rs
@@ -0,0 +1,7 @@
+fn main() {
+ #[cfg(windows)]
+ {
+ embed_resource::compile("assets/windows/iced_builder.rc", embed_resource::NONE);
+ windows_exe_info::versioninfo::link_cargo_env();
+ }
+}