mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 18:30:40 +00:00
Fix skeptic feature
This commit is contained in:
parent
1987922ddb
commit
ef76a75632
4
build.rs
4
build.rs
@ -1,4 +1,4 @@
|
||||
#[cfg(skeptic)]
|
||||
#[cfg(feature = "skeptic")]
|
||||
fn main() {
|
||||
extern crate skeptic;
|
||||
|
||||
@ -8,5 +8,5 @@ fn main() {
|
||||
"doc/tutorial_3.md" ]);
|
||||
}
|
||||
|
||||
#[cfg(not(skeptic))]
|
||||
#[cfg(not(feature = "skeptic"))]
|
||||
fn main() {}
|
||||
|
@ -1 +1,2 @@
|
||||
#[cfg(feature = "skeptic")]
|
||||
include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));
|
||||
|
Loading…
Reference in New Issue
Block a user