Files
opengl-learning/lessons/1. Getting started/8. Camera/recompilerun.sh
2021-02-12 15:43:03 +01:00

9 lines
96 B
Bash

#!/bin/bash
if [ ! -d "build" ]; then meson build; fi
cd build
meson compile
meson test
cd ..