cursive/build.rs

13 lines
307 B
Rust
Raw Normal View History

#[cfg(skeptic)]
2016-09-28 22:22:21 +00:00
fn main() {
extern crate skeptic;
2016-09-28 22:22:21 +00:00
skeptic::generate_doc_tests(&["Readme.md",
"doc/tutorial_1.md",
"doc/tutorial_2.md",
"doc/tutorial_3.md" ]);
}
#[cfg(not(skeptic))]
fn main() {}