Skip to content

Commit 3770fa9

Browse files
committed
More verbose debug logging
1 parent c228443 commit 3770fa9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

rust/binaryninjacore-sys/build.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ fn generate_stubs() -> PathBuf {
5151
.unwrap();
5252

5353
let stubs_path = api_base_path.join("stubs");
54-
cmake::build(stubs_path).join("build")
54+
let mut cmake_config = cmake::Config::new(stubs_path);
55+
56+
cmake_config.build_arg("VERBOSE=1");
57+
cmake_config
58+
.build()
59+
.join("build")
5560
}
5661

5762
fn main() {

0 commit comments

Comments
 (0)