Macro include_resources
Source macro_rules! include_resources {
() => { ... };
}
Expand description
Includes the generated resources from the build script.
This macro must be called once in your code (typically in main.rs or lib.rs)
to include the generated resource constants.
§Example
ⓘuse r_resources::include_resources;
include_resources!();
let _ = r::APP_NAME;