mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
0f74133be3
This patch copies the generated C and C++ header files from the `OUT_DIR` to the root of the crate.
53 lines
1.8 KiB
Rust
53 lines
1.8 KiB
Rust
extern crate cbindgen;
|
|
|
|
use cbindgen::{Builder, Language};
|
|
use std::{env, fs, path::PathBuf};
|
|
|
|
fn main() {
|
|
let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
|
|
let mut crate_wasmer_header_file = PathBuf::from(&crate_dir);
|
|
crate_wasmer_header_file.push("wasmer");
|
|
|
|
let out_dir = env::var("OUT_DIR").unwrap();
|
|
let mut out_wasmer_header_file = PathBuf::from(&out_dir);
|
|
out_wasmer_header_file.push("wasmer");
|
|
|
|
// Generate the C bindings in the `OUT_DIR`.
|
|
out_wasmer_header_file.set_extension("h");
|
|
Builder::new()
|
|
.with_crate(crate_dir.clone())
|
|
.with_language(Language::C)
|
|
.with_include_guard("WASMER_H")
|
|
.generate()
|
|
.expect("Unable to generate C bindings")
|
|
.write_to_file(out_wasmer_header_file.as_path());
|
|
|
|
// Generate the C++ bindings in the `OUT_DIR`.
|
|
out_wasmer_header_file.set_extension("hh");
|
|
Builder::new()
|
|
.with_crate(crate_dir)
|
|
.with_language(Language::Cxx)
|
|
.with_include_guard("WASMER_H")
|
|
.generate()
|
|
.expect("Unable to generate C++ bindings")
|
|
.write_to_file(out_wasmer_header_file.as_path());
|
|
|
|
// Copy the generated C bindings from `OUT_DIR` to
|
|
// `CARGO_MANIFEST_DIR`.
|
|
crate_wasmer_header_file.set_extension("h");
|
|
out_wasmer_header_file.set_extension("h");
|
|
fs::copy(
|
|
out_wasmer_header_file.as_path(),
|
|
crate_wasmer_header_file.as_path(),
|
|
)
|
|
.expect("Unable to copy the generated C bindings");
|
|
|
|
// Copy the generated C++ bindings from `OUT_DIR` to
|
|
// `CARGO_MANIFEST_DIR`.
|
|
crate_wasmer_header_file.set_extension("h");
|
|
crate_wasmer_header_file.set_extension("hh");
|
|
out_wasmer_header_file.set_extension("hh");
|
|
fs::copy(out_wasmer_header_file, crate_wasmer_header_file)
|
|
.expect("Unable to copy the generated C++ bindings");
|
|
}
|