예제 #1
0
	def find_include_path(self, path, **kwargs):
		return find_path_in_list(path, self.get_include_paths())
예제 #2
0
	def find_library_path(self, path, **kwargs):
		return find_path_in_list(path, self.get_library_paths())
예제 #3
0
파일: macosx.py 프로젝트: apetrone/pegasus
	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])