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