| Crates.io | relm4-icons-build |
| lib.rs | relm4-icons-build |
| version | 0.10.1 |
| created_at | 2024-10-30 15:35:41.147358+00 |
| updated_at | 2025-12-31 13:21:41.436113+00 |
| description | Icons for gtk-rs and Relm4 applications |
| homepage | https://relm4.org |
| repository | https://github.com/Relm4/icons |
| max_upload_size | |
| id | 1428699 |
| size | 6,169,284 |
This crate provides the build-time functionality to bundle icons into the binary. It is used in the build.rs file of the project that uses relm4-icons.
Add this to your Cargo.toml:
[build-dependencies]
relm4-icons-build = { version = "0.8.0" }
And in your build.rs file, use relm4-icons-build to bundle the icons and include them in the compiled binary:
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.example.myapp"),
// 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
[
"ssd",
"size-horizontally",
"cross",
],
);
}
And in your main.rs or lib.rs file, create a module named icon_names:
mod icon_names {
include!(concat!(env!("OUT_DIR"), "/icon_names.rs"));
}