AyuGramDesktop/Telegram/build/docker/centos_env/build.sh
2020-10-29 12:38:24 +03:00

10 lines
242 B
Bash

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