예제 #1
0
파일: DarwinSystem.py 프로젝트: jwilk/Pyrex
	def get_linker_options(self, options):
		result = UnixSystem.get_linker_options(self, options)
		if options:
			for dir in options.framework_path:
				options.append("-F" + dir)
		return result
예제 #2
0
 def get_linker_options(self, options):
     result = UnixSystem.get_linker_options(self, options)
     if options:
         for dir in options.framework_path:
             options.append("-F" + dir)
     return result