14 lines
270 B
Rust
14 lines
270 B
Rust
|
#[cfg(all(unix, not(target_os = "macos")))]
|
||
|
fn main() {
|
||
|
|
||
|
// add unix dependencies below
|
||
|
// println!("cargo:rustc-flags=-l readline");
|
||
|
}
|
||
|
|
||
|
#[cfg(target_os = "macos")]
|
||
|
fn main() {
|
||
|
|
||
|
// add macos dependencies below
|
||
|
// println!("cargo:rustc-flags=-l edit");
|
||
|
}
|