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