13
0
livetrax/libs/lua/wscript

36 lines
779 B
Plaintext
Raw Normal View History

2016-02-13 16:31:17 -05:00
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
from waflib import TaskGen
import os
import sys
# Variables for 'waf dist'
APPNAME = 'liblua'
2017-11-28 22:22:26 -05:00
VERSION = "5.3.4"
2016-02-13 16:31:17 -05:00
I18N_PACKAGE = 'liblua'
# Mandatory variables
top = '.'
out = 'build'
def options(opt):
autowaf.set_options(opt)
def configure(conf):
conf.load('compiler_c')
autowaf.configure(conf)
def build(bld):
obj=bld.stlib (source = ['lua.cc', 'luastate.cc'],
cflags = [ '-fPIC' ],
cxxflags = [ '-fPIC' ],
includes = ['.'],
export_includes = ['.'],
target = 'liblua',
uselib = [ 'SIGCPP', 'DL' ]
)
autowaf.ensure_visible_symbols (obj, True)
def shutdown():
autowaf.shutdown()