waf

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

wscript (279B)


      1 top = '.'
      2 out = 'build'
      3 
      4 def options(opt):
      5     opt.load('compiler_cxx cpplint')
      6 
      7 def configure(conf):
      8     conf.load('compiler_cxx cpplint')
      9 
     10 def build(bld):
     11     bld(features='cpplint', source='my_include.hpp')
     12     bld.program(features='cpplint', source='main.cpp', target='app')