24 lines
639 B
Rust
24 lines
639 B
Rust
|
extern crate cmake;
|
||
|
use cmake::Config;
|
||
|
|
||
|
use std::env;
|
||
|
use std::fs::File;
|
||
|
use std::io::Write;
|
||
|
use std::path::PathBuf;
|
||
|
|
||
|
fn main() {
|
||
|
let dst = Config::new("libblink").build();
|
||
|
|
||
|
// Put `memory.x` in our output directory and ensure it's
|
||
|
// on the linker search path.
|
||
|
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
||
|
File::create(out.join("memory.x"))
|
||
|
.unwrap()
|
||
|
.write_all(include_bytes!("memory.x"))
|
||
|
.unwrap();
|
||
|
println!("cargo:rustc-link-search={}", out.display());
|
||
|
|
||
|
println!("cargo:rustc-link-search=native={}", dst.display());
|
||
|
println!("cargo:rustc-link-lib=static=blink");
|
||
|
}
|