From 68533f20f9f2e0ca9efc9360f20d047a79e4fd8a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 29 Dec 2024 11:09:16 +0100 Subject: Add new, improved raw_convert using fmt/fast_float (DoM #2220). The old one was broken if the thousands separator was the same as the decimal separator (e.g. if you set de_DE and change the decimal separator to .) --- wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index ba62d86d..1fcdd119 100644 --- a/wscript +++ b/wscript @@ -266,6 +266,9 @@ def configure(conf): conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True) conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True) + conf.check_cfg(package='fmt', args='--cflags --libs', uselib_store='FMT', mandatory=True) + conf.check_cxx(header_name="fast_float/fast_float.h", uselib_store='FAST_FLOAT', mandatory=True) + if not conf.env.DISABLE_TESTS: conf.recurse('test') if conf.options.enable_gcov: -- cgit v1.2.3