feat: more include paths

This commit is contained in:
Gabriele Musco 2023-06-04 10:40:50 +02:00
commit 71b77c5f27

View file

@ -47,7 +47,10 @@ fn shared_obj_paths() -> Vec<String> {
}
fn include_paths() -> Vec<String> {
vec!["/usr/include".to_string()]
vec![
"/usr/include".to_string(),
"/usr/local/include".to_string(),
]
}
pub fn check_dependency(dep: Dependency) -> bool {