Skip to content

Commit bd1ec6a

Browse files
authored
Re-run build script if CPAL_ASIO_DIR changes or the folder it points to does (#759)
* Re-run build script if the CPAL_ASIO_DIR env variable changes value * Re-run build script if the SDK changes
1 parent e5ccc46 commit bd1ec6a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

asio-sys/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const ASIO_SYS_HEADER: &str = "asiosys.h";
1313
const ASIO_DRIVERS_HEADER: &str = "asiodrivers.h";
1414

1515
fn main() {
16+
println!("cargo:rerun-if-env-changed={}", CPAL_ASIO_DIR);
17+
1618
// If ASIO directory isn't set silently return early
1719
let cpal_asio_dir_var = match env::var(CPAL_ASIO_DIR) {
1820
Err(_) => return,
@@ -21,6 +23,7 @@ fn main() {
2123

2224
// Asio directory
2325
let cpal_asio_dir = PathBuf::from(cpal_asio_dir_var);
26+
println!("cargo:rerun-if-changed={}", cpal_asio_dir.display());
2427

2528
// Directory where bindings and library are created
2629
let out_dir = PathBuf::from(env::var("OUT_DIR").expect("bad path"));

build.rs

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ use std::env;
33
const CPAL_ASIO_DIR: &str = "CPAL_ASIO_DIR";
44

55
fn main() {
6+
println!("cargo:rerun-if-env-changed={}", CPAL_ASIO_DIR);
7+
68
// If ASIO directory isn't set silently return early
79
// otherwise set the asio config flag
810
match env::var(CPAL_ASIO_DIR) {

0 commit comments

Comments
 (0)