summaryrefslogtreecommitdiff
path: root/editor/build.rs
blob: c37df5169c126102f9ff0e04ac93ad7bb5c550e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
fn main() {
  // Tell cargo to look for shared libraries in the specified directory
  // TODO: we need to look based on OS
  // println!("cargo:rustc-link-search=/Users/josh/code/CodenameVentus/deps/celeritas-core/build/macosx/arm64/debug");
  // // println!("cargo:rustc-link-search=../../build/windows/x64/debug");

  // // Tell cargo to tell rustc to link the system bzip2
  // // shared library.
  // println!("cargo:rustc-link-lib=framework=CoreFoundation");
  // println!("cargo:rustc-link-lib=framework=Cocoa");
  // println!("cargo:rustc-link-lib=framework=IOKit");
  // println!("cargo:rustc-link-lib=framework=OpenGL");

  // println!("cargo:rustc-link-lib=core_static");
  // println!("cargo:rustc-link-lib=glfw3");
  // println!("cargo:rustc-link-lib=framework=Cocoa");
  // println!("cargo:rustc-link-lib=framework=Foundation");
  // println!("cargo:rustc-link-lib=framework=QuartzCore");

}