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