13
0
livetrax/tools/gccabicheck/wscript

19 lines
369 B
Plaintext
Raw Normal View History

2015-09-26 12:23:19 -04:00
#!/usr/bin/env python
import re
import sys
2015-09-26 12:23:19 -04:00
def options(opt):
pass
2015-09-26 12:23:19 -04:00
def configure(conf):
pass
2015-09-26 12:23:19 -04:00
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'
2015-10-16 10:26:43 -04:00
obj.install_path = None