blob: e1c405ab3b2e6819dca1b4545bc8755b382cc51a (
plain)
1
2
3
4
5
6
7
8
9
|
def build(bld):
obj = bld(features = 'cxx cxxshlib')
obj.name = 'libcxml'
obj.target = 'cxml'
obj.export_includes = ['.']
obj.uselib = 'LIBXML++ BOOST_FILESYSTEM'
obj.source = "cxml.cc"
bld.install_files('${PREFIX}/include/libcxml', "cxml.h")
|