6 lines
188 B
Rust
6 lines
188 B
Rust
fn main() {
|
|
let config = slint_build::CompilerConfiguration::new()
|
|
.with_style("qt".to_owned());
|
|
slint_build::compile_with_config("ui/appwindow.slint", config).unwrap();
|
|
}
|