d220f477ed
Variables by these names are only used from the local wscript and when running "waf configure", which already for other reasons only can run at the top-level. These variables are thus not mandatory and not used.
25 lines
661 B
Python
25 lines
661 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
I18N_PACKAGE = 'liblua'
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj=bld.stlib (source = ['lua.cc', 'luastate.cc'],
|
|
cflags = [ bld.env['compiler_flags_dict']['pic'] ],
|
|
cxxflags = [ bld.env['compiler_flags_dict']['pic'] ],
|
|
includes = ['.'],
|
|
export_includes = ['.'],
|
|
target = 'liblua',
|
|
uselib = [ 'SIGCPP', 'DL' ]
|
|
)
|
|
autowaf.ensure_visible_symbols (obj, True)
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|