simple-cpp-game-study/sfmldemo/watch_build.sh
2024-04-26 19:14:28 -04:00

12 lines
227 B
Bash
Executable file

#!/usr/bin/env bash
set -e
fswatch -o *.cpp | while read num
do echo ">>>>>>>>>>>>>>>>>>>>>> `date`"
if meson compile -C builddir
then
./builddir/sfmldemo
else
echo "^^^^^^^^^^^^^^^^^^^^^ ERROR `date`"
fi
done