summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-23 14:17:27 +0100
committerCarl Hetherington <cth@carlh.net>2024-12-23 17:34:47 +0100
commit0bb7297574bc99b1629a4f0fae5932d42430d8fe (patch)
tree0632645ec3ab091c159ba4e737a8b291e90cee9a /wscript
parent2fa6a712ba7e07eefab5df62a9c00214cd3c4f14 (diff)
Configure with fmt library.
Diffstat (limited to 'wscript')
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index ba62d86d..aeb66277 100644
--- a/wscript
+++ b/wscript
@@ -135,6 +135,7 @@ def configure(conf):
conf.check_cfg(package='xmlsec1', args='--cflags --libs', uselib_store='XMLSEC1', mandatory=True)
# Remove erroneous escaping of quotes from xmlsec1 defines
conf.env.DEFINES_XMLSEC1 = [f.replace('\\', '') for f in conf.env.DEFINES_XMLSEC1]
+ conf.check_cfg(package='fmt', args='--cflags --libs', uselib_store='FMT', mandatory=True)
# ImageMagick / GraphicsMagick
if (not conf.options.disable_examples) and (not conf.options.disable_dumpimage):