study-system/scripts/build-run.sh

14 lines
193 B
Bash
Executable File

#!/bin/sh
set -e
cd client
if [ ! -d build ]; then
meson setup build client
fi
meson compile -C build
build/src/study-system-client &
cd ..
cd server
rebar3 shell --apps study_system_server