13
0
livetrax/libs/lua/wscript
Mads Kiilerich d220f477ed wscript: drop unused "mandatory variables" 'top' and 'out' in libs
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.
2023-09-17 07:34:55 -06:00

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()