7 lines
387 B
Rust
7 lines
387 B
Rust
//! Cargo build script(编译前钩子)。
|
||
//!
|
||
//! 当前为空:本项目直接复用 `wayland-client`、`pipewire`、`ffmpeg-sys` 等现成 crate,
|
||
//! 不需要在编译前跑 wayland-scanner 或 bindgen 生成代码。类比 Go 无 `//go:generate`。
|
||
// Cargo 编译前不需要生成任何代码(无 wayland-scanner / bindgen),因此 build script 留空。
|
||
fn main() {}
|