示例#1
0
文件: unix.py 项目: am0d/bit
 def __init__(self, project_name):
     Project.__init__(self, project_name)
     self.compiler = CC(self.project_name)
     self.output_extension = self.compiler.output_extension
示例#2
0
文件: content.py 项目: am0d/bit
 def __init__(self):
     Project.__init__(self, 'Content')
     self.compiler = ContentCompiler()