mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
10 lines
190 B
Rust
10 lines
190 B
Rust
fn main() {
|
|
#[cfg(feature = "clippy")]
|
|
{
|
|
println!("cargo:warning=Skipping tauri_build during Clippy");
|
|
}
|
|
|
|
#[cfg(not(feature = "clippy"))]
|
|
tauri_build::build();
|
|
}
|