mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-05 07:24:01 +02:00
10 lines
240 B
Bash
Executable file
10 lines
240 B
Bash
Executable file
#!/usr/bin/scl enable llvm-toolset-7.0 -- scl enable devtoolset-10 -- bash
|
|
|
|
cd Telegram
|
|
./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
cmake --build ../out --config Debug --parallel
|
|
else
|
|
cmake --build ../out --config Release --parallel
|
|
fi
|