예제 #1
0
파일: DarwinSystem.py 프로젝트: jwilk/Pyrex
	def get_libraries(self, options):
		result = UnixSystem.get_libraries(self, options)
		if options:
			for framework in options.frameworks:
				result.extend(["-framework", framework])
		return result
예제 #2
0
 def get_libraries(self, options):
     result = UnixSystem.get_libraries(self, options)
     if options:
         for framework in options.frameworks:
             result.extend(["-framework", framework])
     return result