mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
8 lines
267 B
Rust
8 lines
267 B
Rust
fn main() {
|
|
cfg_aliases::cfg_aliases! {
|
|
fuzzable_platform: { not(any(target_arch = "wasm32", target_os = "ios", all(windows, target_arch = "aarch64"))) },
|
|
}
|
|
// This cfg provided by cargo-fuzz
|
|
println!("cargo::rustc-check-cfg=cfg(fuzzing)");
|
|
}
|