quarkpad 2.0.0

A simple game launcher for Linux to manage and launch games using Proton.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fn main() {
    println!("cargo:rerun-if-changed=resources/ui");
    let status = std::process::Command::new("blueprint-compiler")
        .arg("batch-compile")
        .arg("resources/ui")
        .arg("resources/ui")
        .args([
            "resources/ui/window.blp",
            "resources/ui/grid_item.blp",
            "resources/ui/add_edit_game_page.blp"
        ])
        .status()
        .unwrap();
    assert!(status.success());

    glib_build_tools::compile_resources(&["./resources"], "./resources/resources.xml", "compiled.gresource");
}