mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-09-09 21:44:15 +02:00
10 lines
223 B
Bash
Executable file
10 lines
223 B
Bash
Executable file
#!/usr/bin/scl enable llvm-toolset-7.0 -- scl enable devtoolset-9 -- bash
|
|
|
|
cd Telegram
|
|
./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
cmake3 --build ../out/Debug -j$(nproc)
|
|
else
|
|
cmake3 --build ../out/Release -j$(nproc)
|
|
fi
|