Skip to content

Commit

Permalink
test build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
LVala committed Dec 12, 2023
1 parent e5d90fa commit 3fcabb3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
use std::env;

fn main() {
let manifest_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
let out_dir = env::var("OUT_DIR").unwrap();

println!("MANIFEST_DIR: {:?}", manifest_dir);
println!("OUT_DIR: {:?}", out_dir);

panic!();
}

0 comments on commit 3fcabb3

Please sign in to comment.