mirror of
https://github.com/Chaoscaot/schemsearch.git
synced 2026-01-03 02:37:05 +01:00
7 lines
103 B
Rust
7 lines
103 B
Rust
use cc;
|
|
|
|
fn main() {
|
|
cc::Build::new()
|
|
.file("src/compare.c")
|
|
.compile("compare");
|
|
} |