waf

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

wscript (343B)


      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 
     10 	if conf.options.boost_mt:
     11 		conf.check_boost('system thread log log_setup')
     12 	else:
     13 		conf.check_boost('log log_setup')
     14 
     15 def build(bld):
     16 	bld.program(source='main.cpp', target='app', use='BOOST')