86 lines
1.9 KiB
Rust
86 lines
1.9 KiB
Rust
//! ```cargo
|
|
//! [dependencies]
|
|
//! envmnt = "*"
|
|
//! ```
|
|
|
|
use std::process::Command;
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
enum Profile {
|
|
Debug,
|
|
Release,
|
|
}
|
|
|
|
fn main() {
|
|
let profile = if envmnt::get_or_panic("RELEASE") == "true" {
|
|
Profile::Release
|
|
} else {
|
|
Profile::Debug
|
|
};
|
|
|
|
println!("Using profile: {:?}", profile);
|
|
|
|
let wayland = envmnt::get_or("NO_X11", "false") == "true";
|
|
if wayland {
|
|
println!("Using Wayland feature");
|
|
}
|
|
|
|
let avoid_modulo = envmnt::get_or("NO_MODULO", "false") == "true";
|
|
if avoid_modulo {
|
|
println!("Skipping modulo feature");
|
|
}
|
|
|
|
let mut args = Vec::new();
|
|
args.push("build");
|
|
|
|
if profile == Profile::Release {
|
|
args.push("--release");
|
|
}
|
|
|
|
let override_target_arch = envmnt::get_or("BUILD_ARCH", "current");
|
|
if override_target_arch != "current" {
|
|
args.push("--target");
|
|
args.push(&override_target_arch);
|
|
}
|
|
|
|
args.push("--manifest-path");
|
|
args.push("espanso/Cargo.toml");
|
|
|
|
let mut features = Vec::new();
|
|
if wayland {
|
|
features.push("wayland");
|
|
}
|
|
if !avoid_modulo {
|
|
features.push("modulo");
|
|
}
|
|
|
|
let features_flag = features.join(" ");
|
|
|
|
args.push("-p");
|
|
args.push("espanso");
|
|
args.push("--no-default-features");
|
|
args.push("--features");
|
|
args.push(&features_flag);
|
|
|
|
println!("Calling with args: {:?}", args);
|
|
|
|
let mut cmd = Command::new("cargo");
|
|
cmd.args(&args);
|
|
|
|
// Remove cargo/rust-specific env variables, as otherwise they mess up the
|
|
// nested cargo build call.
|
|
let all_vars = envmnt::vars();
|
|
for (key, _) in all_vars {
|
|
if key.starts_with("CARGO") || (key.starts_with("RUST") && !key.starts_with("RUSTUP")) {
|
|
//println!("Removing {}", key);
|
|
cmd.env_remove(key);
|
|
}
|
|
}
|
|
|
|
let mut handle = cmd.spawn().expect("cargo build failed");
|
|
let result = handle.wait().expect("unable to read cargo exit status");
|
|
if !result.success() {
|
|
panic!("cargo build failed");
|
|
}
|
|
}
|