core-sys-test-haobo 0.2.0

Test
Documentation
1
2
3
4
5
6
7
use std::env;
use std::path::PathBuf;
fn main() {
    let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
    let third_party_repo_path = manifest_dir.join("third_party/c_repo");
    println!("cargo:THIRD_PARTY_REPO_PATH={}", third_party_repo_path.to_string_lossy());
}