aboutsummaryrefslogtreecommitdiff
path: root/build.rs
blob: d8eceab196ed0b4cd1967c296190c50f902422bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fn main() {
    relm4_icons_build::bundle_icons(
        "icon_names.rs",
        Some("systems.tranquil.Map"),
        None::<&str>,
        None::<&str>,
        [
            "agenda",
            "build",
            "image-regular",
            "map",
            "menu-large",
            "papyrus",
            "settings",
            "split-vertical-regular",
            "split-horizontal-regular",
            "zoom-in-regular",
            "zoom-out-regular",
        ],
    );
}