Merge in changes from OSX.

This commit is contained in:
Zed A. Shaw 2024-12-11 12:00:15 -05:00
commit cb2e766305
3 changed files with 13 additions and 1 deletions

11
scripts/coverage_reset.sh Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -e
mv -f ./subprojects/packagecache .
rm -rf subprojects builddir
mkdir subprojects
mv packagecache ./subprojects/
mkdir builddir
cp wraps/*.wrap subprojects/
# on OSX you can't do this with static
meson setup -Db_coverage=true builddir

View file

@ -8,4 +8,4 @@ mv packagecache ./subprojects/
mkdir builddir
cp wraps/*.wrap subprojects/
# on OSX you can't do this with static
meson setup -Db_coverage=true builddir
meson setup builddir

View file

@ -16,6 +16,7 @@
#include <codecvt>
#include <vector>
#include <nlohmann/json.hpp>
#include <algorithm>
using namespace nlohmann;
using namespace fmt;