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