macro_rules! manifest {
($($field:ident = $value:expr),* $(,)?) => { ... };
}Expand description
Define application manifest.
ยงExamples
manifest!(
name = "MyApp",
stack_size = 1024,
app_version = 1,
has_icon = true,
icon: "app.icon",
);