-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rs
207 lines (186 loc) · 7.7 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
use std::env;
use std::path::{Path, PathBuf};
use coin_build_tools::{coinbuilder, link, utils};
const LIB_NAME: &str = "Cgl";
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 mut coinflags = vec!["CGL".to_string()];
let (_, coinflags_other) = coinbuilder::get_metadata_from("CoinUtils");
coinflags.extend(coinflags_other);
let (_, coinflags_other) = coinbuilder::get_metadata_from("Osi");
coinflags.extend(coinflags_other);
if cfg!(feature = "with_clp") {
let (_, coinflags_other) = coinbuilder::get_metadata_from("Clp");
coinflags.extend(coinflags_other);
}
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 mut includes_dir = vec![format!("{}", src_dir)];
let mut lib_sources = include_str!("cgl_lib_sources.txt")
.trim()
.split('\n')
.map(|file| format!("{}/{}", src_dir, file.trim()))
.collect::<Vec<String>>();
let mut coinflags = vec!["CGL".to_string()];
if cfg!(feature = "CglAllDifferent") {
lib_sources.push(format!("{}/CglAllDifferent/CglAllDifferent.cpp", src_dir));
includes_dir.push(format!("{}/CglAllDifferent/", src_dir));
}
if cfg!(feature = "CglBKClique") {
todo!("CglBKClique");
}
if cfg!(feature = "CglClique") {
lib_sources.push(format!("{}/CglClique/CglClique.cpp", src_dir));
lib_sources.push(format!("{}/CglClique/CglCliqueHelper.cpp", src_dir));
includes_dir.push(format!("{}/CglClique/", src_dir));
}
if cfg!(feature = "CglCliqueStrengthening") {
todo!("CglCliqueStrengthening");
}
if cfg!(feature = "CglDuplicateRow") {
lib_sources.push(format!("{}/CglDuplicateRow/CglDuplicateRow.cpp", src_dir));
includes_dir.push(format!("{}/CglDuplicateRow/", src_dir));
}
if cfg!(feature = "CglFlowCover") {
lib_sources.push(format!("{}/CglFlowCover/CglFlowCover.cpp", src_dir));
includes_dir.push(format!("{}/CglFlowCover/", src_dir));
}
if cfg!(feature = "CglGMI") {
lib_sources.push(format!("{}/CglGMI/CglGMI.cpp", src_dir));
lib_sources.push(format!("{}/CglGMI/CglGMIParam.cpp", src_dir));
includes_dir.push(format!("{}/CglGMI/", src_dir));
}
if cfg!(feature = "CglGomory") {
lib_sources.push(format!("{}/CglGomory/CglGomory.cpp", src_dir));
includes_dir.push(format!("{}/CglGomory/", src_dir));
}
if cfg!(feature = "CglKnapsackCover") {
lib_sources.push(format!("{}/CglKnapsackCover/CglKnapsackCover.cpp", src_dir));
includes_dir.push(format!("{}/CglKnapsackCover/", src_dir));
}
if cfg!(feature = "CglLandP") {
lib_sources.push(format!("{}/CglLandP/CglLandP.cpp", src_dir));
lib_sources.push(format!("{}/CglLandP/CglLandPMessages.cpp", src_dir));
lib_sources.push(format!("{}/CglLandP/CglLandPSimplex.cpp", src_dir));
lib_sources.push(format!("{}/CglLandP/CglLandPTabRow.cpp", src_dir));
lib_sources.push(format!("{}/CglLandP/CglLandPUtils.cpp", src_dir));
lib_sources.push(format!("{}/CglLandP/CglLandPValidator.cpp", src_dir));
includes_dir.push(format!("{}/CglLandP/", src_dir));
}
if cfg!(feature = "CglLiftAndProject") {
lib_sources.push(format!(
"{}/CglLiftAndProject/CglLiftAndProject.cpp",
src_dir
));
includes_dir.push(format!("{}/CglLiftAndProject/", src_dir));
}
if cfg!(feature = "CglMixedIntegerRounding") {
lib_sources.push(format!(
"{}/CglMixedIntegerRounding/CglMixedIntegerRounding.cpp",
src_dir
));
includes_dir.push(format!("{}/CglMixedIntegerRounding/", src_dir));
}
if cfg!(feature = "CglMixedIntegerRounding2") {
lib_sources.push(format!(
"{}/CglMixedIntegerRounding2/CglMixedIntegerRounding2.cpp",
src_dir
));
includes_dir.push(format!("{}/CglMixedIntegerRounding2/", src_dir));
}
if cfg!(feature = "CglOddHole") {
lib_sources.push(format!("{}/CglOddHole/CglOddHole.cpp", src_dir));
includes_dir.push(format!("{}/CglOddHole/", src_dir));
}
if cfg!(feature = "CglOddWheel") {
todo!("OddWheel");
}
if cfg!(feature = "CglPreProcess") {
lib_sources.push(format!("{}/CglPreProcess/CglPreProcess.cpp", src_dir));
includes_dir.push(format!("{}/CglPreProcess/", src_dir));
}
if cfg!(feature = "CglProbing") {
lib_sources.push(format!("{}/CglProbing/CglProbing.cpp", src_dir));
includes_dir.push(format!("{}/CglProbing/", src_dir));
}
if cfg!(feature = "CglRedSplit") {
lib_sources.push(format!("{}/CglRedSplit/CglRedSplit.cpp", src_dir));
lib_sources.push(format!("{}/CglRedSplit/CglRedSplitParam.cpp", src_dir));
includes_dir.push(format!("{}/CglRedSplit/", src_dir));
}
if cfg!(feature = "CglRedSplit2") {
lib_sources.push(format!("{}/CglRedSplit2/CglRedSplit2.cpp", src_dir));
lib_sources.push(format!("{}/CglRedSplit2/CglRedSplit2Param.cpp", src_dir));
includes_dir.push(format!("{}/CglRedSplit2/", src_dir));
}
if cfg!(feature = "CglResidualCapacity") {
lib_sources.push(format!(
"{}/CglResidualCapacity/CglResidualCapacity.cpp",
src_dir
));
includes_dir.push(format!("{}/CglResidualCapacity/", src_dir));
}
if cfg!(feature = "CglSimpleRounding") {
lib_sources.push(format!(
"{}/CglSimpleRounding/CglSimpleRounding.cpp",
src_dir
));
includes_dir.push(format!("{}/CglSimpleRounding/", src_dir));
}
if cfg!(feature = "CglTwomir") {
lib_sources.push(format!("{}/CglTwomir/CglTwomir.cpp", src_dir));
includes_dir.push(format!("{}/CglTwomir/", src_dir));
}
if cfg!(feature = "CglZeroHalf") {
lib_sources.push(format!("{}/CglZeroHalf/CglZeroHalf.cpp", src_dir));
lib_sources.push(format!("{}/CglZeroHalf/Cgl012cut.cpp", src_dir));
includes_dir.push(format!("{}/CglZeroHalf/", src_dir));
}
let (include_other, coinflags_other) = coinbuilder::get_metadata_from("CoinUtils");
includes_dir.extend(include_other);
coinflags.extend(coinflags_other);
let (include_other, coinflags_other) = coinbuilder::get_metadata_from("Osi");
includes_dir.extend(include_other);
coinflags.extend(coinflags_other);
if cfg!(feature = "with_clp") {
let (include_other, coinflags_other) = coinbuilder::get_metadata_from("Clp");
includes_dir.extend(include_other);
coinflags.extend(coinflags_other);
}
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("Cgl");
}