mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-28 16:30:52 +08:00
* feat: add Clippy alias commands and improve build process for Clippy integration * fix(lint-clippy): update Clippy run command to use working directory for src-tauri
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();
|
|
}
|