2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-21 17:35:55 +01:00
waf/demos/lua/wscript
2011-09-10 11:13:51 +02:00

11 lines
212 B
Python

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