Files
Roman Shevchenko f8e1e3b0a0 [build scripts] exit codes in macOS file watcher and TouchBar support build scripts
GitOrigin-RevId: 1c456f25eac7800eed11cbbcd308f09128bb76f2
2020-11-19 21:48:35 +00:00

14 lines
203 B
Bash
Executable File

#!/bin/sh
rm -rf build
mkdir build
cd build || exit 1
cmake -DCMAKE_BUILD_TYPE=Release .. || exit 2
make VERBOSE=1 || exit 3
if [ "$1" = "install" ]; then
make install/strip VERBOSE=1 || exit 4
fi