8 lines
301 B
Rust
8 lines
301 B
Rust
fn main() {
|
|
// Use fluent-light as default, but we'll support dynamic switching
|
|
let config = slint_build::CompilerConfiguration::new()
|
|
.with_style("fluent-light".to_string());
|
|
|
|
slint_build::compile_with_config("ui/index.slint", config)
|
|
.expect("Slint build failed");
|
|
}
|