tdesktop/Telegram/build/docker/centos_env/build.sh

11 lines
242 B
Bash
Raw Normal View History

2020-10-29 09:31:58 +00:00
#!/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