| 1 | // Copyright © 2025 David Haig |
|---|---|
| 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(relative_slint_file_path:"../ui/main.slint", config).unwrap(); |
| 8 | slint_build::print_rustc_flags().unwrap(); |
| 9 | } |
| 10 |
