From f84638fd816d2295c5d9f60c0ac8eb6df50d1aba Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 29 Oct 2019 13:42:00 -0400 Subject: start the rewrite --- build.rs | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 build.rs (limited to 'build.rs') diff --git a/build.rs b/build.rs deleted file mode 100644 index 5c50c00..0000000 --- a/build.rs +++ /dev/null @@ -1,46 +0,0 @@ -extern crate cc; -extern crate pkg_config; - -fn libvt100() { - let dir = std::env::current_dir() - .unwrap_or_else(|e| panic!("couldn't get cwd: {}", e));; - std::env::set_current_dir("libvt100") - .unwrap_or_else(|e| panic!("failed to chdir: {}", e)); - let absdir = std::env::current_dir() - .unwrap_or_else(|e| panic!("couldn't get cwd: {}", e));; - let out = std::process::Command::new("make") - .arg("static") - .output() - .unwrap_or_else(|e| panic!("failed to exec: {}", e)); - std::env::set_current_dir(dir) - .unwrap_or_else(|e| panic!("failed to chdir: {}", e)); - if !out.status.success() { - println!("{}", std::string::String::from_utf8_lossy(&out.stderr)); - std::process::exit(out.status.code().unwrap_or(255)); - } - - println!( - "cargo:rustc-link-search=native={}", - absdir.to_str().unwrap() - ); - println!("cargo:rustc-link-lib=static=vt100"); -} - -fn glib() { - let lib_def = pkg_config::probe_library("glib-2.0").unwrap_or_else(|e| { - panic!("Couldn't find required dependency glib-2.0: {}", e); - }); - for dir in lib_def.link_paths { - println!("cargo:rustc-link-search=native={}", dir.to_str().unwrap()); - } -} - -fn libvt100_wrappers() { - cc::Build::new().file("src/ffi.c").compile("vt100wrappers"); -} - -fn main() { - libvt100(); - glib(); - libvt100_wrappers(); -} -- cgit v1.2.3-54-g00ecf