cursive/build.rs
2016-10-14 12:36:12 -07:00

13 lines
331 B
Rust

#[cfg(feature = "skeptic")]
fn main() {
extern crate skeptic;
skeptic::generate_doc_tests(&["Readme.md",
"doc/tutorial_1.md",
"doc/tutorial_2.md",
"doc/tutorial_3.md" ]);
}
#[cfg(not(feature = "skeptic"))]
fn main() {}