Fixes to make it build on OSX with old gear. I have an ancient OSX laptop that uses Clang 14 and it actuall works there. Amazing.

This commit is contained in:
Zed A. Shaw 2024-10-13 14:01:18 -04:00
parent b9c27cd6ba
commit 86c98c43c2
5 changed files with 14 additions and 6 deletions

5
scripts/reset_build.sh Normal file → Executable file
View file

@ -1,17 +1,16 @@
#!/usr/bin/env bash
set -e
mv -f ./subprojects/packagecache .
mv -f ./subprojects/packagecache . || true
rm -rf subprojects builddir
mkdir subprojects
mv packagecache ./subprojects/
mv packagecache ./subprojects/ || true
mkdir builddir
cp *.wrap subprojects
meson wrap install fmt
meson wrap install catch2
meson wrap install ftxui
meson wrap install nlohmann_json
meson wrap install sfml
meson wrap install libpng
meson wrap install vorbis
meson wrap install ogg