示例#1
0
文件: content.py 项目: am0d/bit
 def __init__(self, project_name='PROJECT'):
     Compiler.__init__(self, project_name)
     self.compiler = 'echo'
示例#2
0
文件: cc.py 项目: am0d/bit
 def __init__(self, project_name):
     Compiler.__init__(self, project_name)
     self.executable = 'cc'
     self.output_extension = 'o'
     self.cxx_support = False
     self.type = 'binary'
示例#3
0
文件: msvc.py 项目: am0d/bit
 def __init__(self, project_name):
     Compiler.__init__(self, project_name)
     self.c_support = False
     self.output_extension = 'obj'
     self.type = 'binary'