resheet/build.rs
2024-09-14 00:34:31 -04:00

7 lines
174 B
Rust

use slint_build::*;
fn main() {
let config = CompilerConfiguration::new().with_style("cosmic-dark".into());
compile_with_config("ui/main.slint", config).unwrap();
}