Files
Vladislav Rassokhin 2c72a7db71 IDEA-283733 [build scripts] fix scripts for MacScreenMenu build, ensure modern CMake is used for that
GitOrigin-RevId: e19c6013a4c5945788192a679815058188a4fbb4
2021-12-08 08:21:09 +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