waf

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

wscript (236B)


      1 top = '.'
      2 out = 'build'
      3 
      4 def options(opt):
      5     opt.load('compiler_cxx freeimage')
      6 
      7 def configure(conf):
      8     conf.load('compiler_cxx freeimage')
      9 
     10 def build(bld):
     11     bld.program(source='fi.cpp', target='app', use='FREEIMAGE')