libcsp-rust/examples/build.rs

21 lines
916 B
Rust
Raw Normal View History

use std::{env, path::PathBuf};
2024-05-31 12:52:55 +02:00
use libcsp_cargo_build::{generate_autoconf_header_file, Builder};
fn main() {
2024-05-29 20:14:53 +02:00
let out_dir = env::var("OUT_DIR").unwrap_or_default();
2024-05-31 12:35:29 +02:00
let manifest_dir = env::var("CARGO_MANIFEST_DIR").unwrap_or_default();
2024-05-31 12:52:55 +02:00
let manifest_path = PathBuf::from(&manifest_dir);
2024-05-29 20:14:53 +02:00
let libcsp_path = "../lib/libcsp";
2024-05-31 12:35:29 +02:00
let mut csp_builder = Builder::new(PathBuf::from(libcsp_path), PathBuf::from(&out_dir));
2024-05-31 12:52:55 +02:00
// We always re-generate the header file.
generate_autoconf_header_file(manifest_path.clone(), &csp_builder.cfg)
.expect("generating header file failed");
csp_builder
.generate_autoconf_rust_file(manifest_path)
.expect("generating autoconfig.rs failed");
2024-05-29 20:14:53 +02:00
csp_builder.compile().expect("compiling libcsp failed");
2024-05-31 12:52:55 +02:00
// If we change the libcsp build configuration, we need to re-run the build.
println!("cargo::rerun-if-changed=build.rs");
}