Andrew Rioux 7f9ea12b6a
feat: added download and upload commands
redid actions to better support different clients
2025-03-03 20:03:04 -05:00

13 lines
467 B
Rust

fn main() {
include!("../build_common.rs");
/*if std::env::var("CARGO_CFG_TARGET_ENV").unwrap() == "gnu"
&& std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "linux"
{
let glibc_libs = std::env::var("GLIBC_LIBS").unwrap();
let glibc_libs_static = std::env::var("GLIBC_LIBS_STATIC").unwrap();
println!("cargo:rustc-link-arg=-L{glibc_libs}/lib");
println!("cargo:rustc-link-arg=-L{glibc_libs_static}/lib");
}*/
}