GTK App reactive switch and better UI
This commit is contained in:
parent
29eedb7e9a
commit
f7f59fd24d
20 changed files with 875 additions and 361 deletions
16
burrow-gtk/build.rs
Normal file
16
burrow-gtk/build.rs
Normal 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(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue