watchexec/crates/cli/build.rs

9 lines
210 B
Rust
Raw Normal View History

fn main() {
2023-05-09 00:13:04 +02:00
embed_resource::compile("watchexec-manifest.rc", embed_resource::NONE);
bosion::gather();
2023-12-13 02:08:03 +01:00
if std::env::var("CARGO_FEATURE_EYRA").is_ok() {
println!("cargo:rustc-link-arg=-nostartfiles");
}
}