new Matcher

This commit is contained in:
2023-12-26 21:28:46 +01:00
parent d20940f89b
commit 511ce04f0b
8 changed files with 176 additions and 34 deletions

7
schemsearch-lib/build.rs Normal file
View File

@@ -0,0 +1,7 @@
use cc;
fn main() {
cc::Build::new()
.file("src/compare.c")
.compile("compare");
}