build.rs 155 B

1234567
  1. fn main() {
  2. cc::Build::new()
  3. .flag("-std=c99")
  4. .flag("-pedantic")
  5. .file("libschrift/schrift.c")
  6. .compile("schrift");
  7. }