1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-08-02 10:45:05 +00:00
actix-web/build.rs

47 lines
1.2 KiB
Rust
Raw Normal View History

2017-10-26 13:12:23 +00:00
extern crate skeptic;
2017-11-24 18:28:43 +00:00
extern crate version_check;
2017-10-26 13:12:23 +00:00
use std::{env, fs};
#[cfg(unix)]
fn main() {
2017-11-28 20:44:59 +00:00
let f = env::var("OUT_DIR").unwrap() + "/skeptic-tests.rs";
2017-10-26 13:12:23 +00:00
if env::var("USE_SKEPTIC").is_ok() {
2017-11-28 20:44:59 +00:00
let _ = fs::remove_file(f);
2017-10-26 13:12:23 +00:00
// generates doc tests for `README.md`.
2017-11-28 20:44:59 +00:00
skeptic::generate_doc_tests(
&["README.md",
"guide/src/qs_1.md",
2017-11-28 20:44:59 +00:00
"guide/src/qs_2.md",
"guide/src/qs_3.md",
2017-12-14 05:38:47 +00:00
"guide/src/qs_3_5.md",
"guide/src/qs_4.md",
2017-12-08 23:25:37 +00:00
"guide/src/qs_4_5.md",
"guide/src/qs_5.md",
"guide/src/qs_7.md",
"guide/src/qs_9.md",
"guide/src/qs_10.md",
"guide/src/qs_12.md",
"guide/src/qs_13.md",
2017-11-28 20:44:59 +00:00
]);
2017-10-26 13:12:23 +00:00
} else {
let _ = fs::File::create(f);
}
2017-11-24 18:28:43 +00:00
match version_check::is_nightly() {
Some(true) => println!("cargo:rustc-cfg=actix_nightly"),
Some(false) => (),
None => (),
};
2017-10-26 13:12:23 +00:00
}
#[cfg(not(unix))]
fn main() {
2017-11-24 18:28:43 +00:00
match version_check::is_nightly() {
Some(true) => println!("cargo:rustc-cfg=actix_nightly"),
Some(false) => (),
None => (),
};
2017-10-26 13:12:23 +00:00
}