-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rs
46 lines (40 loc) · 1.16 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
extern crate cc;
fn main() {
// Build CPP files
let mut build = cc::Build::new();
build.warnings(false);
build.cpp(true);
build.flag("-std=c++17");
build.include("c");
build.file("cpp/util.cpp").include("cpp");
build.compile("kryptokrona_common");
// Build C files
let mut build = cc::Build::new();
let tool = build.get_compiler();
if tool.is_like_gnu() || tool.is_like_clang() {
build.flag_if_supported("-std=c99");
build
.flag_if_supported("-msse4.1")
.flag_if_supported("-maes");
}
build.warnings(false);
build.include("cpp");
build
.file("c/aesb.c")
.file("c/blake256.c")
.file("c/crypto-ops-data.c")
.file("c/crypto-ops.c")
.file("c/groestl.c")
.file("c/hash-extra-blake.c")
.file("c/hash-extra-groestl.c")
.file("c/hash-extra-jh.c")
.file("c/hash-extra-skein.c")
.file("c/hash.c")
.file("c/jh.c")
.file("c/keccak.c")
.file("c/oaes_lib.c")
.file("c/skein.c")
.file("c/slow-hash.c")
.include("c");
build.compile("kryptokrona_crypto");
}