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

11 lines
177 B
Bash
Executable File

#!/bin/bash
cd Telegram
./configure.sh "$@"
if [ -n "$DEBUG" ]; then
cmake --build ../out --config Debug --parallel
else
cmake --build ../out --config Release --parallel
fi