typst/vendor/stacker/build.rs
2024-10-16 14:18:46 +03:00

14 lines
316 B
Rust

use std::env;
fn main() {
let target = env::var("TARGET").unwrap();
let mut cfg = cc::Build::new();
if target.contains("windows") {
cfg.define("WINDOWS", None);
cfg.file("src/arch/windows.c");
cfg.include("src/arch").compile("libstacker.a");
} else {
return;
}
}