slang-sys: Rebuild if SLANG_DIR env changes

This commit is contained in:
Bruce Mitchener 2024-11-30 10:01:25 +07:00
parent dbe941c55e
commit 582c482c21

View File

@ -4,6 +4,7 @@ use std::env;
use std::path::{Path, PathBuf};
fn main() {
println!("cargo:rerun-if-env-changed=SLANG_DIR");
let slang_dir = env::var("SLANG_DIR").map(PathBuf::from).expect(
"Environment variable `SLANG_DIR` should be set to the directory of a Slang installation.",
);