dorst 0.15.2

Codebase bootstrap and backup utility
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    built::write_built_file().expect("Failed to acquire build-time information");

    #[cfg(feature = "gui")]
    std::process::Command::new("glib-compile-resources")
        .args([
            "src/resources/resources.xml",
            "--sourcedir=src/resources",
            "--target=src/resources/dorst.gresource",
        ])
        .status()
        .unwrap();
}