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