mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 00:36:56 +02:00
Initial commit
This commit is contained in:
commit
4c8ad629e0
28 changed files with 6758 additions and 0 deletions
13
tests/build.rs
Normal file
13
tests/build.rs
Normal 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");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue