Skip to content

Commit

Permalink
fix(build:stax): -Ilib_nbgl/include
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrq committed Jun 19, 2023
1 parent b6354fc commit 55a2b14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bolos-sys/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{env, path::PathBuf, process::Command};
use std::{env, path::PathBuf};

fn sdk_includes(target: &str) -> impl IntoIterator<Item = PathBuf> {
[
Expand All @@ -7,6 +7,7 @@ fn sdk_includes(target: &str) -> impl IntoIterator<Item = PathBuf> {
PathBuf::from("lib_ux").join("include"),
PathBuf::from("lib_cxng").join("include"),
PathBuf::from("lib_bagl").join("include"),
PathBuf::from("lib_nbgl").join("include"),
PathBuf::from(
env::var_os("CARGO_MANIFEST_DIR").expect("CARGO_MANIFEST_DIR set in build script"),
)
Expand Down

0 comments on commit 55a2b14

Please sign in to comment.