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