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

12 lines
184 B
Bash
Raw Normal View History

2022-11-23 17:10:44 +00:00
#!/bin/bash
2023-06-27 18:01:06 +00:00
set -e
2020-10-29 09:31:58 +00:00
cd Telegram
./configure.sh "$@"
2020-10-29 09:31:58 +00:00
if [ -n "$DEBUG" ]; then
cmake --build ../out --config Debug --parallel
2020-10-29 09:31:58 +00:00
else
cmake --build ../out --config Release --parallel
2020-10-29 09:31:58 +00:00
fi