mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-30 13:03:58 +02:00
10 lines
242 B
Bash
Executable file
10 lines
242 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd Telegram
|
|
scl enable devtoolset-8 -- ./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
scl enable devtoolset-8 -- cmake3 --build ../out/Debug -j$(nproc)
|
|
else
|
|
scl enable devtoolset-8 -- cmake3 --build ../out/Release -j$(nproc)
|
|
fi
|