-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.rs
More file actions
38 lines (38 loc) · 1.1 KB
/
build.rs
File metadata and controls
38 lines (38 loc) · 1.1 KB
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
36
37
38
fn main() {
relm4_icons_build::bundle_icons(
// Name of the file that will be generated at `OUT_DIR`
"icon_names.rs",
// Optional app ID
Some("com.amanoteam.Papo"),
// Custom base resource path:
// * defaults to `/com/example/myapp` in this case if not specified explicitly
// * or `/org/relm4` if app ID was not specified either
None::<&str>,
// Directory with custom icons (if any)
None::<&str>,
// List of icons to include
[
"pin",
"menu",
"go-next",
"clock-alt",
"speaker-0",
"speaker-1",
"speaker-2",
"speaker-3",
"speaker-4",
"view-more",
"down-small",
"image-round",
"paper-plane",
"info-outline",
"phonelink-setup",
"exclamation-mark",
"chat-bubbles-text",
"chat-bubbles-empty",
"phone-right-facing",
"check-round-outline",
"check-round-outline2",
],
);
}