mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-10-31 14:49:24 +00:00
22 lines
608 B
Rust
22 lines
608 B
Rust
fn main() {
|
|
manage_docs();
|
|
}
|
|
|
|
#[cfg(all(
|
|
any(feature = "embed-lgpl-docs", feature = "purge-lgpl-docs"),
|
|
not(all(feature = "embed-lgpl-docs", feature = "purge-lgpl-docs"))
|
|
))]
|
|
fn manage_docs() {
|
|
const PATH: &str = "src";
|
|
const IGNORES: &[&str] = &[];
|
|
lgpl_docs::purge(PATH, IGNORES);
|
|
if cfg!(feature = "embed-lgpl-docs") {
|
|
lgpl_docs::embed(lgpl_docs::Library::GstController, PATH, IGNORES);
|
|
}
|
|
}
|
|
|
|
#[cfg(any(
|
|
all(feature = "embed-lgpl-docs", feature = "purge-lgpl-docs"),
|
|
not(any(feature = "embed-lgpl-docs", feature = "purge-lgpl-docs"))
|
|
))]
|
|
fn manage_docs() {}
|