Start of the starter pack so I can get the installs up and write a blog post about it.
This commit is contained in:
parent
75ca681dd2
commit
3cef4a80b1
13 changed files with 711 additions and 2 deletions
12
scripts/watch_build.sh
Executable file
12
scripts/watch_build.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue