blatherskite

a toy discord-like chat app backend written for a swe class
Log | Files | Refs | README

build.rs (174B)


      1 fn main() {
      2 	if cfg!(target_os = "macos") {
      3 		println!("cargo:rustc-link-search=native=/opt/local/lib");
      4 		println!("cargo:rustc-link-search=native=/opt/homebrew/lib");
      5 	}
      6 }