-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rs
66 lines (53 loc) · 1.75 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use std::env;
use std::path::{Path, PathBuf};
use coin_build_tools::{coinbuilder, link, utils};
const LIB_NAME: &str = "CoinUtils";
fn main() {
println!(
"cargo:rerun-if-changed={}_lib_sources.txt",
LIB_NAME.to_ascii_lowercase()
);
println!(
"cargo:rerun-if-env-changed=CARGO_{}_STATIC",
LIB_NAME.to_ascii_uppercase()
);
println!(
"cargo:rerun-if-env-changed=CARGO_{}_SYSTEM",
LIB_NAME.to_ascii_uppercase()
);
let want_system = utils::want_system(LIB_NAME);
if want_system && link::link_lib_system_if_supported(LIB_NAME) {
let coinflags = vec!["COINUTILS".to_string()];
coinbuilder::print_metadata(Vec::new(), coinflags);
return;
}
if !Path::new(&format!("{}/LICENSE", LIB_NAME)).exists() {
utils::update_submodules(env::var("CARGO_MANIFEST_DIR").unwrap());
}
build_lib_and_link();
}
fn build_lib_and_link() {
let src_dir = format!(
"{}",
PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap())
.join(LIB_NAME)
.join(LIB_NAME)
.join("src")
.display()
);
let includes_dir = vec![src_dir.clone()];
let lib_sources = include_str!("coinutils_lib_sources.txt")
.trim()
.split('\n')
.map(|file| format!("{}/{}", src_dir, file.trim()))
.collect::<Vec<String>>();
let coinflags = vec!["COINUTILS".to_string()];
coinbuilder::print_metadata(includes_dir.clone(), coinflags.clone());
let mut config = coinbuilder::init_builder();
coinflags.iter().for_each(|flag| {
config.define(&format!("COIN_HAS_{}", flag), None);
});
config.includes(includes_dir);
config.files(lib_sources);
config.compile(LIB_NAME);
}