mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-30 20:02:34 +00:00
7 lines
199 B
Rust
7 lines
199 B
Rust
#[allow(unused_macros)] // T1 doesn't use icons (yet)
|
|
macro_rules! include_res {
|
|
($filename:expr) => {
|
|
include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/ui/", $filename))
|
|
};
|
|
}
|