Exemplo n.º 1
0
Arquivo: content.py Projeto: am0d/bit
 def __init__(self, project_name='PROJECT'):
     Compiler.__init__(self, project_name)
     self.compiler = 'echo'
Exemplo n.º 2
0
Arquivo: cc.py Projeto: 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'
Exemplo n.º 3
0
Arquivo: msvc.py Projeto: am0d/bit
 def __init__(self, project_name):
     Compiler.__init__(self, project_name)
     self.c_support = False
     self.output_extension = 'obj'
     self.type = 'binary'