Change default location of `solana.h` to `OUT_DIR` (#5389)

automerge
This commit is contained in:
TristanDebrunner 2019-08-01 13:33:30 -06:00 committed by Grimes
parent 43cc9fcb1d
commit 97c0573c7d
2 changed files with 9 additions and 4 deletions

View File

@ -5,7 +5,7 @@ to generate a header file during the build. To generate both:
```shell
$ cd <path/to/solana/repo>/sdk-c
$ cargo build
$ SOLANA_H_OUT_DIR="$(pwd)/include" cargo build
```
This will generate the static library in `<path/to/solana/repo>/target/deps` and the header file in

View File

@ -1,12 +1,17 @@
use std::env;
use std::fs;
use std::path::Path;
use std::path::{Path, PathBuf};
fn main() {
let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
let out_path = Path::new(&crate_dir);
let out_path = out_path.join(Path::new("include"));
let out_path = if let Ok(path) = env::var("SOLANA_H_OUT_DIR") {
PathBuf::from(path)
} else {
let out_dir = env::var("OUT_DIR").unwrap();
let out_dir = Path::new(&out_dir);
out_dir.join(Path::new("include"))
};
// Ensure `out_path` exists
fs::create_dir_all(&out_path).unwrap_or_else(|err| {