File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ const ASIO_SYS_HEADER: &str = "asiosys.h";
13
13
const ASIO_DRIVERS_HEADER : & str = "asiodrivers.h" ;
14
14
15
15
fn main ( ) {
16
+ println ! ( "cargo:rerun-if-env-changed={}" , CPAL_ASIO_DIR ) ;
17
+
16
18
// If ASIO directory isn't set silently return early
17
19
let cpal_asio_dir_var = match env:: var ( CPAL_ASIO_DIR ) {
18
20
Err ( _) => return ,
@@ -21,6 +23,7 @@ fn main() {
21
23
22
24
// Asio directory
23
25
let cpal_asio_dir = PathBuf :: from ( cpal_asio_dir_var) ;
26
+ println ! ( "cargo:rerun-if-changed={}" , cpal_asio_dir. display( ) ) ;
24
27
25
28
// Directory where bindings and library are created
26
29
let out_dir = PathBuf :: from ( env:: var ( "OUT_DIR" ) . expect ( "bad path" ) ) ;
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ use std::env;
3
3
const CPAL_ASIO_DIR : & str = "CPAL_ASIO_DIR" ;
4
4
5
5
fn main ( ) {
6
+ println ! ( "cargo:rerun-if-env-changed={}" , CPAL_ASIO_DIR ) ;
7
+
6
8
// If ASIO directory isn't set silently return early
7
9
// otherwise set the asio config flag
8
10
match env:: var ( CPAL_ASIO_DIR ) {
You can’t perform that action at this time.
0 commit comments