summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-07 13:56:22 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-07 19:06:24 +0200
commitfe4ee8e99b6179d652eabfe6812befe86e7bb7ea (patch)
tree5baca685437ea057b77470a0599ffc004604a0d3 /wscript
parentd8504c2d684128af07589ebe99f69321daeef37a (diff)
Missing check_cfg of libxml to get the includes.
Diffstat (limited to 'wscript')
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index b1f867a9..38741f61 100644
--- a/wscript
+++ b/wscript
@@ -180,6 +180,7 @@ def configure(conf):
conf.check_cfg(package='libasdcp-carl', args='libasdcp-carl >= 0.1.3 --cflags', uselib_store='ASDCPLIB_CTH', mandatory=True)
conf.env.HAVE_ASDCPLIB_CTH = 1
conf.env.STLIB_ASDCPLIB_CTH = ['asdcp-carl', 'kumu-carl']
+ conf.check_cfg(package='libcxml', args='libcxml >= 0.17.0 --cflags', uselib_store='CXML', mandatory=True)
conf.env.HAVE_CXML = 1
conf.env.LIB_CXML = ['xml++-2.6', 'glibmm-2.4']
conf.env.STLIB_CXML = ['cxml']