mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
11 lines
212 B
Python
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')
|