You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
martian-chess/build.rs

14 lines
327 B
Rust

fn main() {
#[cfg(target_os = "linux")]
println!("cargo:rustc-link-search=lib/linux");
#[cfg(target_os = "windows")]
println!("cargo:rustc-link-search=lib/windows");
#[cfg(feature = "fmod")]
{
println!("cargo:rustc-link-lib=fmod");
println!("cargo:rustc-link-lib=fmodstudio");
}
}