sqlite-vec/tests/build.rs

14 lines
330 B
Rust
Raw Normal View History

2024-04-20 13:38:58 -07:00
use std::env;
use std::path::{Path, PathBuf};
use std::process::Command;
fn main() {
cc::Build::new()
.file("../sqlite-vec.c")
.include(".")
.static_flag(true)
.compile("sqlite-vec-internal");
println!("cargo:rerun-if-changed=usleep.c");
println!("cargo:rerun-if-changed=build.rs");
}