mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
17 lines
311 B
Rust
17 lines
311 B
Rust
#[cfg(not(target_arch = "wasm32"))]
|
|
mod cli;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
mod human;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
mod report;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
mod texture;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
{
|
|
cli::main()?;
|
|
}
|
|
Ok(())
|
|
}
|