2021-11-10 07:51:35 +00:00
|
|
|
#!/usr/bin/scl enable llvm-toolset-7.0 -- scl enable devtoolset-10 -- bash
|
2020-10-29 09:31:58 +00:00
|
|
|
|
|
|
|
cd Telegram
|
2021-09-11 21:04:07 +00:00
|
|
|
./configure.sh "$@"
|
2020-10-29 09:31:58 +00:00
|
|
|
|
|
|
|
if [ -n "$DEBUG" ]; then
|
2021-11-20 17:51:11 +00:00
|
|
|
cmake --build ../out --config Debug --parallel
|
2020-10-29 09:31:58 +00:00
|
|
|
else
|
2021-11-20 17:51:11 +00:00
|
|
|
cmake --build ../out --config Release --parallel
|
2020-10-29 09:31:58 +00:00
|
|
|
fi
|