waf

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

wscript (238B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # Thomas Nagy, 2011 (ita)
      4 
      5 def options(opt):
      6 	opt.load('fsc')
      7 
      8 def configure(conf):
      9 	conf.load('fsc')
     10 
     11 def build(bld):
     12 	bld(features='fs', source='printer.fs main.fs', type='exe', gen='test.exe')
     13