AyuGramDesktop/Telegram/build/docker/centos_env/build.sh
2022-11-25 11:14:15 +01:00

10 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