Wef is a Rust library for embedding WebView functionality using Chromium Embedded Framework (CEF3) with offscreen rendering support.
9 lines
309 B
Rust
9 lines
309 B
Rust
use embed_manifest::{embed_manifest, new_manifest};
|
|
|
|
fn main() {
|
|
// if std::env::var_os("CARGO_CFG_WINDOWS").is_some() {
|
|
// embed_manifest(new_manifest("Wef.Example.GpuiExample"))
|
|
// .expect("unable to embed manifest file");
|
|
// }
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|