From ac7604616ab2e44ad12a9d8d5dd90dec15feb5cc Mon Sep 17 00:00:00 2001 From: Andy Wortman Date: Thu, 14 Mar 2019 15:51:15 -0700 Subject: add ASI controls --- build.rs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build.rs (limited to 'build.rs') diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..da6c74c --- /dev/null +++ b/build.rs @@ -0,0 +1,24 @@ +use std::collections::HashMap; +use std::env; + +fn main() { + let target = env::var("TARGET").unwrap(); + if !target.contains("linux") { + panic!("Non-linux build targets are not tested and may not have a corresponding driver at the moment."); + } + + let mut archmap: HashMap<&'static str, &'static str> = HashMap::new(); + archmap.insert("x86_64", "x64"); + archmap.insert("x86", "x86"); + archmap.insert("armv5", "armv5"); + archmap.insert("armv6", "armv6"); + archmap.insert("armv7", "armv7"); + archmap.insert("armv8", "armv8"); + for (arch, dir) in archmap.iter() { + if target.contains(arch) { + println!("cargo:rustc-link-search={}/lib/{}/", env::var("CARGO_MANIFEST_DIR").unwrap(), dir); + } + } + println!("cargo:rustc-link-lib=ASICamera2"); + println!("cargo:rustc-link-lib=qhyccd"); +} -- cgit v1.1