waf

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

wscript (285B)


      1 top = '.'
      2 out = 'build'
      3 
      4 def options(opt):
      5     opt.load('compiler_cxx boost')
      6 
      7 def configure(conf):
      8     conf.load('compiler_cxx boost')
      9     conf.check_boost('system filesystem python', mt=True)
     10 
     11 def build(bld):
     12     bld.program(source='main.cpp', target='app', use='BOOST')