-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.rs
More file actions
32 lines (30 loc) · 743 Bytes
/
build.rs
File metadata and controls
32 lines (30 loc) · 743 Bytes
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
fn main() {
println!("cargo:rerun-if-changed=.windows/winmd/Microsoft.Dia.winmd");
println!("cargo:rerun-if-changed=build.rs");
windows_bindgen::bindgen([
"--in",
"default",
".windows/winmd/Microsoft.Dia.winmd",
"--out",
"src/public_bindings.rs",
"--flat",
"--filter",
"Microsoft.Dia",
"--reference",
"windows,skip-root,Windows",
])
.unwrap();
windows_bindgen::bindgen([
"--in",
"default",
"--out",
"src/helper_bindings.rs",
"--flat",
"--filter",
"IClassFactory",
"LoadLibraryExA",
"GetProcAddress",
"LOAD_WITH_ALTERED_SEARCH_PATH",
])
.unwrap();
}