wscript 273 B

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