diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-13 23:55:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-13 23:55:59 +0000 |
| commit | d14bbc2088ed9c0f9d77f15cb943968a70bb8198 (patch) | |
| tree | 5c1c766d3e82de3139710d76618293d610145f63 /src/wscript | |
Initial.
Diffstat (limited to 'src/wscript')
| -rw-r--r-- | src/wscript | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/wscript b/src/wscript new file mode 100644 index 0000000..e1c405a --- /dev/null +++ b/src/wscript @@ -0,0 +1,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") |
