mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-04 02:39:28 +00:00

* [autofix.ci] apply automated fixes * Update demos/usecases/esp-idf/README.md Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev> * Update demos/usecases/esp-idf/rust-toolchain.toml Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev> --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev>
12 lines
287 B
Rust
12 lines
287 B
Rust
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use slint_build::CompilerConfiguration;
|
|
|
|
fn main() {
|
|
slint_build::compile_with_config(
|
|
"../ui/app.slint",
|
|
CompilerConfiguration::new().with_style("cosmic".into()),
|
|
)
|
|
.unwrap();
|
|
}
|