Skip to content

Commit a4187ee

Browse files
committed
libosdp-sys: Add out_dir as include dir in build.rs for osdp_export.h
Signed-off-by: Siddharth Chandrasekaran <sidcha.dev@gmail.com>
1 parent aba4009 commit a4187ee

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

libosdp-sys/build.rs

+22-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ use std::{
77
};
88
type Result<T> = anyhow::Result<T, anyhow::Error>;
99

10+
const OSDP_EXPORT_CONTENT: &str = "/* Auto generated from build.rs */
11+
#ifndef OSDP_EXPORT_H_
12+
#define OSDP_EXPORT_H_
13+
14+
#define OSDP_EXPORT
15+
#define OSDP_NO_EXPORT
16+
#define OSDP_DEPRECATED_EXPORT
17+
18+
#endif /* OSDP_EXPORT_H_ */
19+
";
20+
1021
fn path_join(root: &str, path: &str) -> String {
1122
Path::new(root)
1223
.join(path)
@@ -64,11 +75,11 @@ impl GitInfo {
6475
}
6576

6677
fn generate_osdp_build_headers(out_dir: &str) -> Result<()> {
67-
// Add an empty file as we don't
68-
let data = "#define OSDP_EXPORT";
69-
std::fs::write(path_join(out_dir, "osdp_export.h"), data)
78+
/* generate osdp_export.h */
79+
std::fs::write(path_join(out_dir, "osdp_export.h"), OSDP_EXPORT_CONTENT)
7080
.context("Failed to create osdp_export.h")?;
7181

82+
/* generate osdp_config.h */
7283
let git = GitInfo::new()?;
7384
let src = "vendor/src/osdp_config.h.in";
7485
let dest = path_join(out_dir, "osdp_config.h");
@@ -95,6 +106,8 @@ fn main() -> Result<()> {
95106

96107
generate_osdp_build_headers(&out_dir)?;
97108

109+
/* build LibOSDP */
110+
98111
let mut build = cc::Build::new();
99112
let mut build = build
100113
.include("vendor/src")
@@ -151,8 +164,14 @@ fn main() -> Result<()> {
151164

152165
build.compile("libosdp.a");
153166

167+
/* generate bindings */
168+
169+
let args = vec![
170+
format!("-I{}", &out_dir),
171+
];
154172
let bindings = bindgen::Builder::default()
155173
.header("vendor/include/osdp.h")
174+
.clang_args(args)
156175
.generate()
157176
.context("Unable to generate bindings")?;
158177

0 commit comments

Comments
 (0)