slint/examples/uefi-demo/build.rs
2023-04-12 08:23:09 +02:00

12 lines
407 B
Rust

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
fn main() {
slint_build::compile_with_config(
"demo.slint",
slint_build::CompilerConfiguration::new()
.with_style("fluent-dark".to_owned())
.embed_resources(slint_build::EmbedResourcesKind::EmbedForSoftwareRenderer),
)
.unwrap();
}