waf

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

wscript (212B)


      1 #! /usr/bin/env python
      2 # coding: utf-8
      3 
      4 def configure(conf):
      5 	conf.load('lua')
      6 	# to enable luac file installation globally:
      7 	conf.env.LUADIR = '/opt/share/myapp/scripts/'
      8 
      9 def build(bld):
     10 	bld(source='foo.lua')