mirror of
https://github.com/mii443/esaxx-rs.git
synced 2025-12-03 02:58:24 +00:00
8 lines
136 B
Rust
8 lines
136 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.cpp(true)
|
|
.file("src/esaxx.cpp")
|
|
.include("src")
|
|
.compile("esaxx");
|
|
}
|