1 2 3 4 5 6 7 8 9 10 11 12
extern crate cc; extern crate skeptic; fn main() { skeptic::generate_doc_tests(&["README.md"]); cc::Build::new() .file("c/YGEnums.c") .file("c/YGNodeList.c") .file("c/Yoga.c") .flag_if_supported("-Wno-unused-parameter") .compile("libyoga.a"); }