kotatogram-desktop/Telegram/build/docker/centos_env/build.sh
2021-11-17 10:03:14 +04:00

10 lines
222 B
Bash
Executable file

#!/usr/bin/scl enable llvm-toolset-7.0 -- scl enable devtoolset-10 -- bash
cd Telegram
./configure.sh "$@"
if [ -n "$DEBUG" ]; then
cmake --build ../out/Debug -j$(nproc)
else
cmake --build ../out/Release -j$(nproc)
fi