(&self)
| 288 | } |
| 289 | |
| 290 | pub fn get_library_build_header_path(&self) -> Result<PathBuf> { |
| 291 | let path: PathBuf = [self.get_library_build_dir()?, "include".into()] |
| 292 | .iter() |
| 293 | .collect(); |
| 294 | Ok(path) |
| 295 | } |
| 296 | |
| 297 | pub fn obtain_library_include_headers(&self) -> Result<Vec<PathBuf>> { |
| 298 | let header_names = get_include_lib_headers(self)?; |