3b4cf9191c
https://waf.io/book/ says By default, the project name and version are set to noname and 1.0. To change them, it is necessary to provide two additional variables in the top-level project file - and waf code inspection confirms that waf itself only will use the top level VERSION. Some wscripts will use bld.env['VERSION'] but that will also just use the value set in the top wscript.
31 lines
754 B
Python
31 lines
754 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
# Variables for 'waf dist'
|
|
APPNAME = 'liblua'
|
|
I18N_PACKAGE = 'liblua'
|
|
|
|
# Mandatory variables
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
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()
|