About this crate
This crate offers convenience macros for gvdb.
The macros are include_gresource_from_xml!()
and include_gresource_from_dir!()
Examples
Compile a GResource XML file and include the bytes in the file.
use include_gresource_from_xml;
const GRESOURCE_BYTES: & = include_gresource_from_xml!;
Scan a directory and create a GResource file with all the contents of the directory.
use include_gresource_from_dir;
const GRESOURCE_BYTES: & = include_gresource_from_dir!;