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.
20 lines
434 B
Python
20 lines
434 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import re
|
|
import sys
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'c cprogram')
|
|
obj.source = [ 'abicheck.c' ]
|
|
obj.target = 'gcc-glibmm-abi-check'
|
|
obj.name = 'gcc-glibmm-abi-check'
|
|
if re.search ("bsd", sys.platform) is None:
|
|
obj.lib = 'dl'
|
|
obj.install_path = None
|