dipstick/build.rs

9 lines
199 B
Rust
Executable File

#[cfg(feature = "skeptic")]
extern crate skeptic;
fn main() {
// generates documentation tests.
#[cfg(feature = "skeptic")]
skeptic::generate_doc_tests(&["README.md", "HANDBOOK.md"]);
}