diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2025-12-26 21:17:05 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2025-12-26 21:25:41 +0100 |
| commit | 5cb79e3f86b5328301eabbbc409f254b58ee9bf4 (patch) | |
| tree | 78d48265bc840b4e7564ed38b3ba9a3026001fdb /build.rs | |
Initial build
Diffstat (limited to 'build.rs')
| -rw-r--r-- | build.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..68b1874 --- /dev/null +++ b/build.rs @@ -0,0 +1,16 @@ +fn main() { + relm4_icons_build::bundle_icons( + "icon_names.rs", + Some("systems.tranquil.Map"), + None::<&str>, + None::<&str>, + [ + "image-regular", + "plus", + "split-vertical-regular", + "split-horizontal-regular", + "zoom-in-regular", + "zoom-out-regular", + ], + ); +} |