ardour/libs/lua/wscript

22 lines
601 B
Text
Raw Normal View History

2016-02-13 22:31:17 +01:00
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
I18N_PACKAGE = 'liblua'
def options(opt):
pass
2016-02-13 22:31:17 +01:00
def configure(conf):
pass
2016-02-13 22:31:17 +01:00
def build(bld):
2020-01-14 00:52:01 +01:00
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' ]
2016-02-13 22:31:17 +01:00
)
autowaf.ensure_visible_symbols (obj, True)