mirror of
https://github.com/denoland/rusty_v8.git
synced 2025-01-21 21:50:20 -05:00
10 lines
152 B
Rust
10 lines
152 B
Rust
use cc;
|
|
|
|
fn main() {
|
|
cc::Build::new()
|
|
.cpp(true)
|
|
.flag("-std:c++17")
|
|
.debug(true)
|
|
.file("src/lib.cpp")
|
|
.compile("v8-bindings");
|
|
}
|