mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
9 lines
212 B
Rust
9 lines
212 B
Rust
fn main() {
|
|
let profile = std::env::var("PROFILE").unwrap_or_default();
|
|
|
|
if profile == "release" {
|
|
println!("cargo:rustc-flag=-C");
|
|
println!("cargo:rustc-flag=target-cpu=native");
|
|
}
|
|
}
|