-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.rs
More file actions
35 lines (33 loc) · 789 Bytes
/
build.rs
File metadata and controls
35 lines (33 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#[cfg(windows)]
extern crate winres;
fn main() {
#[cfg(windows)]
winres::WindowsResource::new()
.set_icon("meta/io.github.pieterdd.RcloneShuttle.ico")
.compile()
.unwrap();
relm4_icons_build::bundle_icons(
"icon_names.rs",
None,
None,
None::<&str>,
[
"left-large",
"right-large",
"up-large",
"arrow-circular-top-right",
"warning-outline",
"plus",
"folder-filled",
"paper-filled",
"check-round-outline",
"error-outline",
"padlock2",
"menu",
"info-outline",
"minus-circle-filled",
"brush",
"leaflet",
],
);
}