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