We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cfb300 commit a924420Copy full SHA for a924420
ledger_secure_sdk_sys/build.rs
@@ -663,10 +663,15 @@ fn configure_lib_nbgl(command: &mut cc::Build, c_sdk: &Path) {
663
.collect::<Vec<PathBuf>>(),
664
)
665
.files(
666
- glob(c_sdk.join("lib_nbgl/src/nbgl_use_case*.c").to_str().unwrap())
667
- .unwrap()
668
- .map(|x| x.unwrap())
669
- .collect::<Vec<PathBuf>>(),
+ glob(
+ c_sdk
+ .join("lib_nbgl/src/nbgl_use_case*.c")
+ .to_str()
670
+ .unwrap(),
671
+ )
672
+ .unwrap()
673
+ .map(|x| x.unwrap())
674
+ .collect::<Vec<PathBuf>>(),
675
676
.file(c_sdk.join("src/nbgl_stubs.S"))
677
.include(&glyphs_path)
0 commit comments