0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-01-21 21:50:20 -05:00
denoland-rusty-v8/build.rs
Bert Belder f9d0a6ba77
works
2019-10-15 18:31:05 -07:00

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");
}