Initial commit

This commit is contained in:
Alex Garcia 2024-04-20 13:38:58 -07:00
commit 4c8ad629e0
28 changed files with 6758 additions and 0 deletions

13
tests/build.rs Normal file
View file

@ -0,0 +1,13 @@
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");
}