mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 05:38:01 +00:00
9 lines
203 B
Rust
9 lines
203 B
Rust
fn main() {
|
|
#[cfg(not(windows))]
|
|
println!("cargo:rustc-link-lib=dylib=app");
|
|
|
|
#[cfg(windows)]
|
|
println!("cargo:rustc-link-lib=dylib=libapp");
|
|
|
|
println!("cargo:rustc-link-search=.");
|
|
}
|