waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

wscript (393B)


      1 #!/usr/bin/env python
      2 # encoding: utf-8
      3 
      4 from waflib.TaskGen import extension
      5 
      6 top = '.'
      7 out = 'build'
      8 
      9 
     10 @extension('.py', 'wscript')
     11 def check_syntax(self, node):
     12     self.create_task('Pep8', node)
     13 
     14 
     15 def options(opt):
     16     opt.load('pep8')
     17 
     18 
     19 def configure(conf):
     20     # warning after this comment
     21     
     22     conf.load('pep8')
     23 
     24 
     25 def build(bld):
     26     bld(source='wscript')