blob: 5238d680666d8d1922d78011c90da46236a27b25 (
plain)
1
2
3
4
5
6
|
def build(bld):
obj = bld(features='cxx cxxprogram')
obj.use = ['libsub-1.0']
obj.uselib = 'OPENJPEG CXML BOOST_FILESYSTEM BOOST_REGEX FMT'
obj.source = 'dumpsubs.cc'
obj.target = 'dumpsubs'
|