@@ -7,6 +7,17 @@ use std::{
7
7
} ;
8
8
type Result < T > = anyhow:: Result < T , anyhow:: Error > ;
9
9
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
+
10
21
fn path_join ( root : & str , path : & str ) -> String {
11
22
Path :: new ( root)
12
23
. join ( path)
@@ -64,11 +75,11 @@ impl GitInfo {
64
75
}
65
76
66
77
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 )
70
80
. context ( "Failed to create osdp_export.h" ) ?;
71
81
82
+ /* generate osdp_config.h */
72
83
let git = GitInfo :: new ( ) ?;
73
84
let src = "vendor/src/osdp_config.h.in" ;
74
85
let dest = path_join ( out_dir, "osdp_config.h" ) ;
@@ -95,6 +106,8 @@ fn main() -> Result<()> {
95
106
96
107
generate_osdp_build_headers ( & out_dir) ?;
97
108
109
+ /* build LibOSDP */
110
+
98
111
let mut build = cc:: Build :: new ( ) ;
99
112
let mut build = build
100
113
. include ( "vendor/src" )
@@ -151,8 +164,14 @@ fn main() -> Result<()> {
151
164
152
165
build. compile ( "libosdp.a" ) ;
153
166
167
+ /* generate bindings */
168
+
169
+ let args = vec ! [
170
+ format!( "-I{}" , & out_dir) ,
171
+ ] ;
154
172
let bindings = bindgen:: Builder :: default ( )
155
173
. header ( "vendor/include/osdp.h" )
174
+ . clang_args ( args)
156
175
. generate ( )
157
176
. context ( "Unable to generate bindings" ) ?;
158
177
0 commit comments