cursive/build.rs

13 lines
331 B
Rust
Raw Normal View History

2016-10-14 19:36:12 +00:00
#[cfg(feature = "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" ]);
}
2016-10-14 19:36:12 +00:00
#[cfg(not(feature = "skeptic"))]
fn main() {}