GTK App reactive switch and better UI

This commit is contained in:
dav 2023-12-09 12:38:54 -08:00
parent 29eedb7e9a
commit f7f59fd24d
20 changed files with 875 additions and 361 deletions

16
burrow-gtk/build.rs Normal file
View file

@ -0,0 +1,16 @@
use anyhow::Result;
fn main() -> Result<()> {
compile_gresources()?;
Ok(())
}
fn compile_gresources() -> Result<()> {
glib_build_tools::compile_resources(
&["data"],
"data/resources.gresource.xml",
"compiled.gresource",
);
Ok(())
}