1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | fn main() { |
5 | let config: CompilerConfiguration = slint_build::CompilerConfiguration::new() |
6 | .embed_resources(kind:slint_build::EmbedResourcesKind::EmbedForSoftwareRenderer); |
7 | slint_build::compile_with_config(path:"ui/printerdemo.slint", config).unwrap(); |
8 | slint_build::print_rustc_flags().unwrap(); |
9 | } |
10 |