def find_include_path(self, path, **kwargs): return find_path_in_list(path, self.get_include_paths())
def find_library_path(self, path, **kwargs): return find_path_in_list(path, self.get_library_paths())
def find_include_path(self, path, **kwargs): # currently, only searches the latest SDK latest_sdk = self.include_search_paths.keys()[-1] return \ find_path_in_list(path, self.compiler_includes) or \ find_path_in_list(path, self.include_search_paths[latest_sdk])