WhisperCom/libs/loguru/glog_example/build_and_run.sh

13 lines
166 B
Bash
Raw Normal View History

#!/bin/bash
set -e # Fail on error
ROOT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
cd "$ROOT_DIR"
mkdir -p build
cd build
cmake ..
make
./glog_example $@